Index: Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Data.Test/HeightStructuresInputTest.cs =================================================================== diff -u -rb784ac8be54e88a798f4b7b7ad54ffe47b587e20 -r4aa6d896646fee50b7bc6fadd9c2251b4fdd4f2e --- Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Data.Test/HeightStructuresInputTest.cs (.../HeightStructuresInputTest.cs) (revision b784ac8be54e88a798f4b7b7ad54ffe47b587e20) +++ Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Data.Test/HeightStructuresInputTest.cs (.../HeightStructuresInputTest.cs) (revision 4aa6d896646fee50b7bc6fadd9c2251b4fdd4f2e) @@ -26,6 +26,7 @@ using Ringtoets.Common.Data.Calculation; using Ringtoets.Common.Data.Probabilistics; using Ringtoets.Common.Data.TestUtil; +using Ringtoets.HydraRing.Data; namespace Ringtoets.HeightStructures.Data.Test { @@ -88,6 +89,7 @@ Mean = new RoundedDouble(5, random.NextDouble()), StandardDeviation = new RoundedDouble(2, random.NextDouble()) }; + var location = new HydraulicBoundaryLocation(0, "test", 0, 0); var orientationOfTheNormalOfTheStructure = new RoundedDouble(5, random.NextDouble()); var allowableIncreaseOfLevelForStorage = new LognormalDistribution(2) @@ -136,6 +138,7 @@ input.WidthOfFlowApertures = widthOfFlowApertures; input.DeviationOfTheWaveDirection = deviationOfTheWaveDirection; input.StormDuration = stormDuration; + input.HydraulicBoundaryLocation = location; // Assert Assert.AreEqual(levelOfCrestOfStructure.Mean, input.LevelOfCrestOfStructure.Mean); @@ -167,6 +170,8 @@ Assert.AreEqual(stormDuration.Mean, input.StormDuration.Mean); Assert.AreEqual(defaultStormDuration, input.StormDuration.StandardDeviation); + + Assert.AreEqual(location, input.HydraulicBoundaryLocation); } } } \ No newline at end of file