Index: Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Data.Test/SoilProfile/MacroStabilityInwardsSoilLayerUnderSurfaceLineTest.cs =================================================================== diff -u -r69d647795daacbf48e17d0cf3a02a21865ab4ae6 -r4fd22b788bfd2fc1c94e57e6410491a9c0508fee --- Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Data.Test/SoilProfile/MacroStabilityInwardsSoilLayerUnderSurfaceLineTest.cs (.../MacroStabilityInwardsSoilLayerUnderSurfaceLineTest.cs) (revision 69d647795daacbf48e17d0cf3a02a21865ab4ae6) +++ Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Data.Test/SoilProfile/MacroStabilityInwardsSoilLayerUnderSurfaceLineTest.cs (.../MacroStabilityInwardsSoilLayerUnderSurfaceLineTest.cs) (revision 4fd22b788bfd2fc1c94e57e6410491a9c0508fee) @@ -32,7 +32,7 @@ public class MacroStabilityInwardsSoilLayerUnderSurfaceLineTest { [Test] - public void Constructor_WithoutOuterRingWithHolesAndProperties_ThrowsArgumentNullException() + public void Constructor_WithoutOuterRingWithHolesAndData_ThrowsArgumentNullException() { // Call TestDelegate test = () => new MacroStabilityInwardsSoilLayerUnderSurfaceLine( @@ -45,7 +45,7 @@ } [Test] - public void Constructor_WithoutHolesWithOuterRingAndProperties_ThrowsArgumentNullException() + public void Constructor_WithoutHolesWithOuterRingAndData_ThrowsArgumentNullException() { // Call TestDelegate test = () => new MacroStabilityInwardsSoilLayerUnderSurfaceLine( @@ -57,7 +57,7 @@ } [Test] - public void Constructor_WithoutPropertiesWithOuterRingAndHoles_ThrowsArgumentNullException() + public void Constructor_WithoutDataWithOuterRingAndHoles_ThrowsArgumentNullException() { // Call TestDelegate test = () => new MacroStabilityInwardsSoilLayerUnderSurfaceLine(new Point2D[0], Enumerable.Empty(), null); @@ -68,7 +68,7 @@ } [Test] - public void Constructor_WithoutOuterRingWithProperties_ThrowsArgumentNullException() + public void Constructor_WithoutOuterRingWithData_ThrowsArgumentNullException() { // Call TestDelegate test = () => new MacroStabilityInwardsSoilLayerUnderSurfaceLine( @@ -80,7 +80,7 @@ } [Test] - public void Constructor_WithoutPropertiesWithOuterRing_ThrowsArgumentNullException() + public void Constructor_WithoutDataWithOuterRing_ThrowsArgumentNullException() { // Call TestDelegate test = () => new MacroStabilityInwardsSoilLayerUnderSurfaceLine(new Point2D[0], null); @@ -91,36 +91,36 @@ } [Test] - public void Constructor_WithOuterRingAndHolesAndProperties_NewInstanceWithPropertiesSet() + public void Constructor_WithOuterRingAndHolesAndData_NewInstanceWithDataSet() { // Call var outerRing = new Point2D[0]; IEnumerable holes = Enumerable.Empty(); - var properties = new MacroStabilityInwardsSoilLayerData(); + var data = new MacroStabilityInwardsSoilLayerData(); // Setup - var layer = new MacroStabilityInwardsSoilLayerUnderSurfaceLine(outerRing, holes, properties); + var layer = new MacroStabilityInwardsSoilLayerUnderSurfaceLine(outerRing, holes, data); // Assert Assert.AreSame(outerRing, layer.OuterRing); Assert.AreSame(holes, layer.Holes); - Assert.AreSame(properties, layer.Data); + Assert.AreSame(data, layer.Data); } [Test] - public void Constructor_WithOuterRingAndProperties_NewInstanceWithPropertiesSet() + public void Constructor_WithOuterRingAndData_NewInstanceWithDataSet() { // Call var outerRing = new Point2D[0]; - var properties = new MacroStabilityInwardsSoilLayerData(); + var data = new MacroStabilityInwardsSoilLayerData(); // Setup - var layer = new MacroStabilityInwardsSoilLayerUnderSurfaceLine(outerRing, properties); + var layer = new MacroStabilityInwardsSoilLayerUnderSurfaceLine(outerRing, data); // Assert Assert.AreSame(outerRing, layer.OuterRing); Assert.IsEmpty(layer.Holes); - Assert.AreSame(properties, layer.Data); + Assert.AreSame(data, layer.Data); } } } \ No newline at end of file