Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/DikeProfiles/ProfileLocationTest.cs =================================================================== diff -u -rd2b9feaf8aceaa9a96d0e6e19fd6fbbee8987ca6 -ra5c5133ec23681679e77ff31b89e6410d366f247 --- Ringtoets/Common/test/Ringtoets.Common.IO.Test/DikeProfiles/ProfileLocationTest.cs (.../ProfileLocationTest.cs) (revision d2b9feaf8aceaa9a96d0e6e19fd6fbbee8987ca6) +++ Ringtoets/Common/test/Ringtoets.Common.IO.Test/DikeProfiles/ProfileLocationTest.cs (.../ProfileLocationTest.cs) (revision a5c5133ec23681679e77ff31b89e6410d366f247) @@ -58,7 +58,7 @@ } [Test] - public void Constructor_InitializedWithNullId_ThrownArgumentException() + public void Constructor_InitializedWithNullId_ThrowArgumentException() { // Setup var referencePoint = new Point2D(2.2, 3.3); @@ -73,7 +73,7 @@ } [Test] - public void Constructor_InitializedWithNullPoint_ThrownArgumentException() + public void Constructor_InitializedWithNullPoint_ThrowArgumentException() { // Call TestDelegate call = () => new ProfileLocation("anID", "aNAME", 1.1, null); @@ -89,7 +89,7 @@ [TestCase("a#1")] [TestCase(" ")] [TestCase("*&(%&$")] - public void Constructor_InitializedWithInvalidId_ThrownArgumentException(string id) + public void Constructor_InitializedWithInvalidId_ThrowArgumentException(string id) { // Setup var referencePoint = new Point2D(2.2, 3.3); @@ -107,7 +107,7 @@ [TestCase(double.NaN)] [TestCase(double.PositiveInfinity)] [TestCase(double.NegativeInfinity)] - public void Constructor_InitializedWithInvalidId_ThrownArgumentException(double x0) + public void Constructor_InitializedWithInvalidId_ThrowArgumentException(double x0) { // Setup var referencePoint = new Point2D(2.2, 3.3);