Index: Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Data.Test/MacroStabilityInwardsCalculationScenarioExtensionsTest.cs =================================================================== diff -u -rcd90ebf744fb74f0d4b0dd6ee06f9c39b5faf213 -r99f686f22091051a65ff1ee20abd68ffad713647 --- Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Data.Test/MacroStabilityInwardsCalculationScenarioExtensionsTest.cs (.../MacroStabilityInwardsCalculationScenarioExtensionsTest.cs) (revision cd90ebf744fb74f0d4b0dd6ee06f9c39b5faf213) +++ Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Data.Test/MacroStabilityInwardsCalculationScenarioExtensionsTest.cs (.../MacroStabilityInwardsCalculationScenarioExtensionsTest.cs) (revision 99f686f22091051a65ff1ee20abd68ffad713647) @@ -49,7 +49,7 @@ public void IsSurfaceLineIntersectionWithReferenceLineInSection_EmptySegmentCollection_ThrowsInvalidOperationException() { // Setup - var surfaceLine = new MacroStabilityInwardsSurfaceLine + var surfaceLine = new MacroStabilityInwardsSurfaceLine(string.Empty) { ReferenceLineIntersectionWorldPoint = new Point2D(0.0, 0.0) }; @@ -85,7 +85,7 @@ public void IsSurfaceLineIntersectionWithReferenceLineInSection_WithoutReferenceLineIntersectionWorldPoint_ThrowsArgumentNullException() { // Setup - var surfaceLine = new MacroStabilityInwardsSurfaceLine(); + var surfaceLine = new MacroStabilityInwardsSurfaceLine(string.Empty); surfaceLine.SetGeometry(new[] { new Point3D(0.0, 5.0, 0.0), @@ -120,7 +120,7 @@ public void IsSurfaceLineIntersectionWithReferenceLineInSection_SurfaceLineIntersectsReferenceline_ReturnsTrue() { // Setup - var surfaceLine = new MacroStabilityInwardsSurfaceLine + var surfaceLine = new MacroStabilityInwardsSurfaceLine(string.Empty) { ReferenceLineIntersectionWorldPoint = new Point2D(0.0, 0.0) }; @@ -158,7 +158,7 @@ public void IsSurfaceLineIntersectionWithReferenceLineInSection_SurfaceLineDoesNotIntersectsReferenceline_ReturnsFalse() { // Setup - var surfaceLine = new MacroStabilityInwardsSurfaceLine + var surfaceLine = new MacroStabilityInwardsSurfaceLine(string.Empty) { ReferenceLineIntersectionWorldPoint = new Point2D(0.0, 0.0) };