Index: Ringtoets/Common/test/Ringtoets.Common.Data.TestUtil/TestHydraulicBoundaryLocation.cs =================================================================== diff -u -r20a3e0fe462e2afb58034a32ac56c063c7d9b5e2 -r0e700dc5121b8f56c96d1d552056bbe6ebe29300 --- Ringtoets/Common/test/Ringtoets.Common.Data.TestUtil/TestHydraulicBoundaryLocation.cs (.../TestHydraulicBoundaryLocation.cs) (revision 20a3e0fe462e2afb58034a32ac56c063c7d9b5e2) +++ Ringtoets/Common/test/Ringtoets.Common.Data.TestUtil/TestHydraulicBoundaryLocation.cs (.../TestHydraulicBoundaryLocation.cs) (revision 0e700dc5121b8f56c96d1d552056bbe6ebe29300) @@ -30,6 +30,13 @@ public class TestHydraulicBoundaryLocation : HydraulicBoundaryLocation { /// + /// Creates a new instance of + /// with the given name. + /// + /// The name for the . + public TestHydraulicBoundaryLocation(string name) : base(0, name, 0, 0) {} + + /// /// Creates a new instance of . /// public TestHydraulicBoundaryLocation() : this(null, null) {} @@ -41,7 +48,7 @@ /// The design water level result to set in the output. /// The wave height result to set in the output. private TestHydraulicBoundaryLocation(double? designWaterLevel, double? waveHeight) - : base(0, string.Empty, 0, 0) + : this(string.Empty) { if (designWaterLevel.HasValue) {