Index: Ringtoets/Common/test/Ringtoets.Common.Data.Test/Structures/StructuresInputBaseTest.cs =================================================================== diff -u -r15ead312ec6f70a6f5b3fd75a01b2735cca3e616 -r7e18d72b65e2041b1493dca3bd0b722d1fa5a664 --- Ringtoets/Common/test/Ringtoets.Common.Data.Test/Structures/StructuresInputBaseTest.cs (.../StructuresInputBaseTest.cs) (revision 15ead312ec6f70a6f5b3fd75a01b2735cca3e616) +++ Ringtoets/Common/test/Ringtoets.Common.Data.Test/Structures/StructuresInputBaseTest.cs (.../StructuresInputBaseTest.cs) (revision 7e18d72b65e2041b1493dca3bd0b722d1fa5a664) @@ -96,7 +96,7 @@ Assert.IsNull(input.Structure); Assert.IsNull(input.HydraulicBoundaryLocation); - AssertEqualValue(double.NaN, input.StructureNormalOrientation); + AssertAreEqual(double.NaN, input.StructureNormalOrientation); Assert.AreEqual(2, input.StructureNormalOrientation.NumberOfDecimalPlaces); Assert.IsNull(input.ForeshoreProfile); @@ -249,7 +249,7 @@ // Assert Assert.AreEqual(2, input.StructureNormalOrientation.NumberOfDecimalPlaces); - AssertEqualValue(orientation, input.StructureNormalOrientation); + AssertAreEqual(orientation, input.StructureNormalOrientation); } [Test] @@ -508,7 +508,7 @@ Assert.IsTrue(input.Updated); } - private static void AssertEqualValue(double expectedValue, RoundedDouble actualValue) + private static void AssertAreEqual(double expectedValue, RoundedDouble actualValue) { Assert.AreEqual(expectedValue, actualValue, actualValue.GetAccuracy()); } @@ -538,7 +538,6 @@ private class SimpleStructure : StructureBase { public SimpleStructure(ConstructionProperties constructionProperties) : base(constructionProperties) {} - public SimpleStructure(string name, string id, Point2D location, double structureNormalOrientation) : base(name, id, location, structureNormalOrientation) {} } } } \ No newline at end of file