Index: Ringtoets/Common/test/Ringtoets.Common.Data.TestUtil/TestForeshoreProfile.cs
===================================================================
diff -u -r6678115bc8c06dcc0b676429038e1839b128d6f2 -rca2fe78dafe4d5faedec6e92da8219dfcea50e34
--- Ringtoets/Common/test/Ringtoets.Common.Data.TestUtil/TestForeshoreProfile.cs (.../TestForeshoreProfile.cs) (revision 6678115bc8c06dcc0b676429038e1839b128d6f2)
+++ Ringtoets/Common/test/Ringtoets.Common.Data.TestUtil/TestForeshoreProfile.cs (.../TestForeshoreProfile.cs) (revision ca2fe78dafe4d5faedec6e92da8219dfcea50e34)
@@ -64,13 +64,12 @@
/// name and id and no .
///
/// The name of the profile.
- /// The id of the profile.
+ /// The id of the profile.
/// Thrown when
- /// is null, empty or whitespaces.
- public TestForeshoreProfile(string profileName, string id)
- : this(id, profileName, new Point2D(0, 0), null, Enumerable.Empty()) {}
+ /// is null, empty or whitespaces.
+ public TestForeshoreProfile(string profileName, string profileId)
+ : this(profileId, profileName, new Point2D(0, 0), null, Enumerable.Empty()) {}
-
///
/// Creates a new instance of with a specified .
///
@@ -103,12 +102,12 @@
/// - is null, empty or whitespaces.
///
public TestForeshoreProfile(string profileId, IEnumerable geometry)
- : this(profileId, "name", new Point2D(0, 0), null, geometry) { }
+ : this(profileId, "name", new Point2D(0, 0), null, geometry) {}
///
/// Instantiates a with given properties.
///
- /// The id of the foreshore profile.
+ /// The id of the foreshore profile.
/// The name of the foreshore profile.
/// The location of the foreshore profile.
/// The breakwater of the foreshore profile.
@@ -118,15 +117,15 @@
/// Thrown when:
///
/// - Any element of is null.
- /// - is null, empty or whitespaces.
+ /// - is null, empty or whitespaces.
///
- private TestForeshoreProfile(string id, string profileName, Point2D worldCoordinate, BreakWater breakWater, IEnumerable geometry)
+ private TestForeshoreProfile(string profileId, string profileName, Point2D worldCoordinate, BreakWater breakWater, IEnumerable geometry)
: base(worldCoordinate,
geometry,
breakWater,
new ConstructionProperties
{
- Id = id,
+ Id = profileId,
Name = profileName
}) {}
}