Index: DamClients/DamUI/trunk/src/Dam/Tests/IO/CombineImportedDataTest.cs =================================================================== diff -u -r2417 -r2418 --- DamClients/DamUI/trunk/src/Dam/Tests/IO/CombineImportedDataTest.cs (.../CombineImportedDataTest.cs) (revision 2417) +++ DamClients/DamUI/trunk/src/Dam/Tests/IO/CombineImportedDataTest.cs (.../CombineImportedDataTest.cs) (revision 2418) @@ -288,9 +288,9 @@ Assert.IsTrue(combineImportedData.ErrorMessages[0].Message.Contains(CharacteristicPointType.ShoulderBaseInside.ToString())); } - private Deltares.Geotechnics.SurfaceLines.SurfaceLine2 CreateValidSurfaceLine() + private SurfaceLine2 CreateValidSurfaceLine() { - var surfaceLine = new Deltares.Geotechnics.SurfaceLines.SurfaceLine2() + var surfaceLine = new SurfaceLine2() { Geometry = new LocalizedGeometryPointString(), CharacteristicPoints = { GeometryMustContainPoint = true } @@ -304,14 +304,14 @@ return surfaceLine; } - private Deltares.Geotechnics.SurfaceLines.SurfaceLine2 CreateInvalidSurfaceLine() + private SurfaceLine2 CreateInvalidSurfaceLine() { var surfaceLine = CreateValidSurfaceLine(); surfaceLine.EnsurePointOfType(15, 0, 2, CharacteristicPointType.ShoulderBaseInside); return surfaceLine; } - private Deltares.Geotechnics.SurfaceLines.SurfaceLine2 CreateValidSurfaceLineTrafficLoad() + private SurfaceLine2 CreateValidSurfaceLineTrafficLoad() { var surfaceLine = CreateValidSurfaceLine(); surfaceLine.EnsurePointOfType(15, 0, 2, CharacteristicPointType.TrafficLoadOutside);