Index: Ringtoets/ClosingStructures/test/Ringtoets.ClosingStructures.Data.TestUtil/TestClosingStructure.cs
===================================================================
diff -u -r8e8f8c83c45656f65adaa8e47600379dc5ae8f61 -r85d3615793ddf3f8f72eb02409a23286396f5cf1
--- Ringtoets/ClosingStructures/test/Ringtoets.ClosingStructures.Data.TestUtil/TestClosingStructure.cs (.../TestClosingStructure.cs) (revision 8e8f8c83c45656f65adaa8e47600379dc5ae8f61)
+++ Ringtoets/ClosingStructures/test/Ringtoets.ClosingStructures.Data.TestUtil/TestClosingStructure.cs (.../TestClosingStructure.cs) (revision 85d3615793ddf3f8f72eb02409a23286396f5cf1)
@@ -24,19 +24,43 @@
namespace Ringtoets.ClosingStructures.Data.TestUtil
{
+ ///
+ /// used for testing purposes.
+ ///
public class TestClosingStructure : ClosingStructure
{
+ ///
+ /// Creates a new instance of .
+ ///
public TestClosingStructure()
: this("test") {}
+ ///
+ /// Creates a new instance of .
+ ///
+ /// The name of the structure.
public TestClosingStructure(string name)
: this(name, new Point2D(12345.56789, 9876.54321), ClosingStructureInflowModelType.VerticalWall) {}
+ ///
+ /// Creates a new instance of .
+ ///
+ /// The location of the structure.
public TestClosingStructure(Point2D location) : this("test", location, ClosingStructureInflowModelType.VerticalWall) {}
+ ///
+ /// Creates a new instance of .
+ ///
+ /// The inflow model type of the structure.
public TestClosingStructure(ClosingStructureInflowModelType type)
: this("test", new Point2D(12345.56789, 9876.54321), type) {}
+ ///
+ /// Creates a new instance of .
+ ///
+ /// The name of the structure.
+ /// The location of the structure.
+ /// The inflow model type of the structure.
private TestClosingStructure(string name, Point2D location, ClosingStructureInflowModelType type)
: base(new ConstructionProperties
{