Index: Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Forms.Test/PropertyClasses/HeightStructuresInputContextPropertiesTest.cs =================================================================== diff -u -r5a28016b2c6566fbb91341bcc06d9f2dff927384 -rdd8f41ce9d9ff9fd570874721a114560c7a71013 --- Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Forms.Test/PropertyClasses/HeightStructuresInputContextPropertiesTest.cs (.../HeightStructuresInputContextPropertiesTest.cs) (revision 5a28016b2c6566fbb91341bcc06d9f2dff927384) +++ Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Forms.Test/PropertyClasses/HeightStructuresInputContextPropertiesTest.cs (.../HeightStructuresInputContextPropertiesTest.cs) (revision dd8f41ce9d9ff9fd570874721a114560c7a71013) @@ -30,6 +30,7 @@ using NUnit.Framework; using Rhino.Mocks; using Ringtoets.Common.Data.AssessmentSection; +using Ringtoets.Common.Data.DikeProfiles; using Ringtoets.Common.Data.FailureMechanism; using Ringtoets.Common.Data.Structures; using Ringtoets.Common.Data.TestUtil; @@ -246,7 +247,7 @@ var properties = new HeightStructuresInputContextProperties(inputContext, handler); // Call - var availableForeshoreProfiles = properties.GetAvailableForeshoreProfiles(); + IEnumerable availableForeshoreProfiles = properties.GetAvailableForeshoreProfiles(); // Assert Assert.AreSame(failureMechanism.ForeshoreProfiles, availableForeshoreProfiles); @@ -275,7 +276,7 @@ var properties = new HeightStructuresInputContextProperties(inputContext, handler); // Call - var availableStructures = properties.GetAvailableStructures(); + IEnumerable availableStructures = properties.GetAvailableStructures(); // Assert Assert.AreSame(failureMechanism.HeightStructures, availableStructures); @@ -336,14 +337,14 @@ input.Structure = new TestHeightStructure(); var customHandler = new CalculationInputSetPropertyValueAfterConfirmationParameterTester(new[] - { - observable - }); + { + observable + }); var inputContext = new HeightStructuresInputContext(input, - calculation, - failureMechanism, - assessmentSection); + calculation, + failureMechanism, + assessmentSection); var properties = new HeightStructuresInputContextProperties(inputContext, customHandler); // Call