Index: Ringtoets/ClosingStructures/test/Ringtoets.ClosingStructures.Data.TestUtil/TestClosingStructure.cs =================================================================== diff -u -rf9e4f420b403e6417f5dc2ba6d7beab9424baf89 -r73597729ce18d3ee00d8036bca8341e9c12f2953 --- Ringtoets/ClosingStructures/test/Ringtoets.ClosingStructures.Data.TestUtil/TestClosingStructure.cs (.../TestClosingStructure.cs) (revision f9e4f420b403e6417f5dc2ba6d7beab9424baf89) +++ Ringtoets/ClosingStructures/test/Ringtoets.ClosingStructures.Data.TestUtil/TestClosingStructure.cs (.../TestClosingStructure.cs) (revision 73597729ce18d3ee00d8036bca8341e9c12f2953) @@ -26,14 +26,20 @@ { public class TestClosingStructure : ClosingStructure { - public TestClosingStructure() : this("test") {} + public TestClosingStructure() + : this("test") {} - public TestClosingStructure(string name) + public TestClosingStructure(string name) + : this(name, new Point2D(12345.56789, 9876.54321)) { } + + public TestClosingStructure(Point2D location) : this("test", location) {} + + public TestClosingStructure(string name, Point2D location) : base(new ConstructionProperties { Name = name, Id = "id", - Location = new Point2D(12345.56789, 9876.54321), + Location = location, StorageStructureArea = { Mean = (RoundedDouble) 20000,