Index: DamEngine/trunk/src/Deltares.DamEngine.Calculators.Tests/DikesDesign/SurfaceLineAdapterTest.cs =================================================================== diff -u -r3893 -r4000 --- DamEngine/trunk/src/Deltares.DamEngine.Calculators.Tests/DikesDesign/SurfaceLineAdapterTest.cs (.../SurfaceLineAdapterTest.cs) (revision 3893) +++ DamEngine/trunk/src/Deltares.DamEngine.Calculators.Tests/DikesDesign/SurfaceLineAdapterTest.cs (.../SurfaceLineAdapterTest.cs) (revision 4000) @@ -34,9 +34,7 @@ private readonly Location location = new Location(); [TearDown] - public void TestFixtureTearDown() - { - } + public void TestFixtureTearDown() {} [Test] public void ThrowsAnExceptionWhenSurfaceLineIsNull() @@ -92,8 +90,16 @@ Geometry = new GeometryPointString() }; var p1 = new GeometryPoint(); - var p2 = new GeometryPoint() { X = 10, Z = 10 }; - var p3 = new GeometryPoint() { X = 15, Z = 15 }; + var p2 = new GeometryPoint + { + X = 10, + Z = 10 + }; + var p3 = new GeometryPoint + { + X = 15, + Z = 15 + }; surfaceLine1.EnsurePointOfType(p1.X, p1.Z, CharacteristicPointType.DikeToeAtRiver); surfaceLine1.EnsurePointOfType(p2.X, p2.Z, CharacteristicPointType.DikeTopAtRiver); surfaceLine1.EnsurePointOfType(p3.X, p3.Z, CharacteristicPointType.DikeTopAtPolder); @@ -113,10 +119,26 @@ Geometry = new GeometryPointString() }; var p1 = new GeometryPoint(); - var p2 = new GeometryPoint() { X = 10, Z = 10 }; - var p3 = new GeometryPoint() { X = 15, Z = 10 }; - var p4 = new GeometryPoint() { X = 17, Z = 8 }; - var p5 = new GeometryPoint() { X = 18, Z = 9 }; + var p2 = new GeometryPoint + { + X = 10, + Z = 10 + }; + var p3 = new GeometryPoint + { + X = 15, + Z = 10 + }; + var p4 = new GeometryPoint + { + X = 17, + Z = 8 + }; + var p5 = new GeometryPoint + { + X = 18, + Z = 9 + }; surfaceLine1.EnsurePointOfType(p1.X, p1.Z, CharacteristicPointType.DikeToeAtRiver); surfaceLine1.EnsurePointOfType(p2.X, p2.Z, CharacteristicPointType.DikeTopAtRiver); surfaceLine1.EnsurePointOfType(p3.X, p3.Z, CharacteristicPointType.DikeTopAtPolder); @@ -129,9 +151,7 @@ class StubSurfaceLineAdapter : SurfaceLineAdapter { public StubSurfaceLineAdapter(SurfaceLine2 surfaceLine, Location location, double scenarioPolderLevel) - : base(surfaceLine, location, scenarioPolderLevel) - { - } + : base(surfaceLine, location, scenarioPolderLevel) {} } } -} +} \ No newline at end of file