Index: Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Data.TestUtil/TestHeightStructure.cs
===================================================================
diff -u -r4bf59bb3506b840b284efe0c0f4431b7876e0e5b -rc1594afa56f02899bd122fc4fd4ccf4d76b236b7
--- Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Data.TestUtil/TestHeightStructure.cs (.../TestHeightStructure.cs) (revision 4bf59bb3506b840b284efe0c0f4431b7876e0e5b)
+++ Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Data.TestUtil/TestHeightStructure.cs (.../TestHeightStructure.cs) (revision c1594afa56f02899bd122fc4fd4ccf4d76b236b7)
@@ -40,25 +40,42 @@
///
/// The name of the structure.
public TestHeightStructure(string name)
- : this(name, new Point2D(0.0, 0.0)) {}
+ : this(name, "Id", new Point2D(0.0, 0.0)) {}
///
/// Creates a new instance of .
///
+ /// The name of the structure.
+ /// The id of the structure.
+ public TestHeightStructure(string name, string id)
+ : this(name, id, new Point2D(0.0, 0.0)) {}
+
+ ///
+ /// Creates a new instance of .
+ ///
/// The location of the structure.
public TestHeightStructure(Point2D location)
- : this("Test", location) {}
+ : this("Test", "Id", location) {}
///
/// Creates a new instance of .
///
+ /// The location of the structure.
+ /// The id of the structure.
+ public TestHeightStructure(Point2D location, string id)
+ : this("Test", id, location) {}
+
+ ///
+ /// Creates a new instance of .
+ ///
/// The name of the structure.
+ /// The id of the structure.
/// The location of the structure.
- public TestHeightStructure(string name, Point2D location)
+ public TestHeightStructure(string name, string id, Point2D location)
: base(new ConstructionProperties
{
Name = name,
- Id = "Id",
+ Id = id,
Location = location,
StructureNormalOrientation = (RoundedDouble) 0.12345,
LevelCrestStructure =