Index: Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.Data.TestUtil/TestStabilityPointStructure.cs =================================================================== diff -u -r5f6b3f80bb6747f12157149f7689a8fc7d3552a5 -r89c7c9e14125203dc769583b62808b291bd3558b --- Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.Data.TestUtil/TestStabilityPointStructure.cs (.../TestStabilityPointStructure.cs) (revision 5f6b3f80bb6747f12157149f7689a8fc7d3552a5) +++ Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.Data.TestUtil/TestStabilityPointStructure.cs (.../TestStabilityPointStructure.cs) (revision 89c7c9e14125203dc769583b62808b291bd3558b) @@ -50,7 +50,7 @@ /// The id of the structure. /// Thrown when /// or is null, empty or consists of only whitespaces. - public TestStabilityPointStructure(string name, string id) : this(name, id, new Point2D(1.234, 2.3456)) { } + public TestStabilityPointStructure(string name, string id) : this(name, id, new Point2D(1.234, 2.3456)) {} /// /// Creates a new instance of . @@ -63,6 +63,18 @@ /// /// Creates a new instance of . /// + /// The location of the structure. + /// The id of the structure. + /// Thrown when + /// is null. + /// Thrown when + /// is null, empty or consists of only whitespaces. + public TestStabilityPointStructure(Point2D location, string id) + : this("name", id, location) {} + + /// + /// Creates a new instance of . + /// /// The name of the structure. /// /// The location of the structure.