Index: Ringtoets/GrassCoverErosionOutwards/test/Ringtoets.GrassCoverErosionOutwards.Plugin.Test/TreeNodeInfos/GrassCoverErosionOutwardsFailureMechanismSectionResultContextTreeNodeInfoTest.cs =================================================================== diff -u -r6ce3cfa19ef59b12462bae4a77e9a7ee5a05e28c -rb15268001c06a569fb2f63e9615ac86ebf3fc7c5 --- Ringtoets/GrassCoverErosionOutwards/test/Ringtoets.GrassCoverErosionOutwards.Plugin.Test/TreeNodeInfos/GrassCoverErosionOutwardsFailureMechanismSectionResultContextTreeNodeInfoTest.cs (.../GrassCoverErosionOutwardsFailureMechanismSectionResultContextTreeNodeInfoTest.cs) (revision 6ce3cfa19ef59b12462bae4a77e9a7ee5a05e28c) +++ Ringtoets/GrassCoverErosionOutwards/test/Ringtoets.GrassCoverErosionOutwards.Plugin.Test/TreeNodeInfos/GrassCoverErosionOutwardsFailureMechanismSectionResultContextTreeNodeInfoTest.cs (.../GrassCoverErosionOutwardsFailureMechanismSectionResultContextTreeNodeInfoTest.cs) (revision b15268001c06a569fb2f63e9615ac86ebf3fc7c5) @@ -19,6 +19,7 @@ // Stichting Deltares and remain full property of Stichting Deltares at all times. // All rights reserved. +using System.Drawing; using System.Linq; using Core.Common.Controls.TreeView; using Core.Common.Gui; @@ -83,7 +84,7 @@ var context = new FailureMechanismSectionResultContext(mechanism.SectionResults, mechanism); // Call - var text = info.Text(context); + string text = info.Text(context); // Assert Assert.AreEqual("Resultaat", text); @@ -93,7 +94,7 @@ public void Image_Always_ReturnsFailureMechanismSectionResultIcon() { // Call - var image = info.Image(null); + Image image = info.Image(null); // Assert TestHelper.AssertImagesAreEqual(RingtoetsCommonFormsResources.FailureMechanismSectionResultIcon, image);