Index: Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Data.TestUtil/TestHeightStructure.cs
===================================================================
diff -u -rc1594afa56f02899bd122fc4fd4ccf4d76b236b7 -r6b18e2c0134c97e01ba13c518fb7a8efa7f42253
--- Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Data.TestUtil/TestHeightStructure.cs (.../TestHeightStructure.cs) (revision c1594afa56f02899bd122fc4fd4ccf4d76b236b7)
+++ Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Data.TestUtil/TestHeightStructure.cs (.../TestHeightStructure.cs) (revision 6b18e2c0134c97e01ba13c518fb7a8efa7f42253)
@@ -19,6 +19,7 @@
// Stichting Deltares and remain full property of Stichting Deltares at all times.
// All rights reserved.
+using System;
using Core.Common.Base.Data;
using Core.Common.Base.Geometry;
@@ -39,6 +40,8 @@
/// Creates a new instance of .
///
/// The name of the structure.
+ /// Thrown when
+ /// is null, empty or consists of only whitespaces.
public TestHeightStructure(string name)
: this(name, "Id", new Point2D(0.0, 0.0)) {}
@@ -47,13 +50,17 @@
///
/// The name of the structure.
/// The id of the structure.
+ /// Thrown when
+ /// or is null, empty or consists of only whitespaces.
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.
+ /// Thrown when
+ /// is null.
public TestHeightStructure(Point2D location)
: this("Test", "Id", location) {}
@@ -62,6 +69,10 @@
///
/// 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 TestHeightStructure(Point2D location, string id)
: this("Test", id, location) {}
@@ -71,6 +82,10 @@
/// The name of the structure.
/// The id of the structure.
/// The location of the structure.
+ /// Thrown when
+ /// is null.
+ /// Thrown when
+ /// or is null, empty or consists of only whitespaces.
public TestHeightStructure(string name, string id, Point2D location)
: base(new ConstructionProperties
{