Index: Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Data.Test/DikeProfileTest.cs =================================================================== diff -u -rce31448a066c084f755439f3e7d453bfb042b291 -r0efb28b7f5a708daa1cf9e8aeba6b8f84a3ebaf5 --- Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Data.Test/DikeProfileTest.cs (.../DikeProfileTest.cs) (revision ce31448a066c084f755439f3e7d453bfb042b291) +++ Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Data.Test/DikeProfileTest.cs (.../DikeProfileTest.cs) (revision 0efb28b7f5a708daa1cf9e8aeba6b8f84a3ebaf5) @@ -45,8 +45,8 @@ var foreshoreGeometry = new[] { - new Point2D(0.0, 1.1), - new Point2D(8.0, 9.1), + new Point2D(0.0, 1.1), + new Point2D(8.0, 9.1) }; // Call @@ -147,7 +147,7 @@ public void Constructor_ConstructionPropertiesIsNull_ThrowsArgumentNullException() { // Call - TestDelegate call = () => new DikeProfile(new Point2D(0,0), new RoughnessPoint[0], new Point2D[0], null, null); + TestDelegate call = () => new DikeProfile(new Point2D(0, 0), new RoughnessPoint[0], new Point2D[0], null, null); // Assert string paramName = Assert.Throws(call).ParamName; @@ -174,10 +174,10 @@ { // Call var dikeProfile = new DikeProfile(new Point2D(0, 0), new RoughnessPoint[0], new Point2D[0], - null, new DikeProfile.ConstructionProperties - { - DikeHeight = 1.23456 - }); + null, new DikeProfile.ConstructionProperties + { + DikeHeight = 1.23456 + }); // Assert Assert.AreEqual(2, dikeProfile.DikeHeight.NumberOfDecimalPlaces); @@ -206,7 +206,7 @@ { // Call var dikeProfile = new DikeProfile(new Point2D(0, 0), new RoughnessPoint[0], new Point2D[0], - null, new DikeProfile.ConstructionProperties()); + null, new DikeProfile.ConstructionProperties()); // Assert Assert.IsNull(dikeProfile.BreakWater);