Index: Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Service.Test/Converters/UpliftVanSoilProfileConverterTest.cs =================================================================== diff -u -rb1f91c40a335a9e2df70844ddee08b7dc3923259 -rbfb81f94181cf21cf73edad591c367969bd22993 --- Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Service.Test/Converters/UpliftVanSoilProfileConverterTest.cs (.../UpliftVanSoilProfileConverterTest.cs) (revision b1f91c40a335a9e2df70844ddee08b7dc3923259) +++ Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Service.Test/Converters/UpliftVanSoilProfileConverterTest.cs (.../UpliftVanSoilProfileConverterTest.cs) (revision bfb81f94181cf21cf73edad591c367969bd22993) @@ -106,13 +106,7 @@ }) }, new[] { - new MacroStabilityInwardsPreconsolidationStressUnderSurfaceLine(new MacroStabilityInwardsPreconsolidationStressUnderSurfaceLine.ConstructionProperties - { - PreconsolidationStressMean = random.NextDouble(), - PreconsolidationStressCoefficientOfVariation = random.NextDouble(), - XCoordinate = random.NextDouble(), - ZCoordinate = random.NextDouble() - }) + new MacroStabilityInwardsPreconsolidationStress(random.NextDouble(), random.NextDouble(), random.NextDouble(), random.NextDouble()) }); // Call @@ -133,10 +127,7 @@ { ShearStrengthModel = (MacroStabilityInwardsShearStrengthModel) 99 }) - }, new[] - { - new MacroStabilityInwardsPreconsolidationStressUnderSurfaceLine(new MacroStabilityInwardsPreconsolidationStressUnderSurfaceLine.ConstructionProperties()) - }); + }, new MacroStabilityInwardsPreconsolidationStress[0]); // Call TestDelegate test = () => UpliftVanSoilProfileConverter.Convert(profile); @@ -161,10 +152,7 @@ { ShearStrengthModel = originalShearStrengthModel }) - }, new[] - { - new MacroStabilityInwardsPreconsolidationStressUnderSurfaceLine(new MacroStabilityInwardsPreconsolidationStressUnderSurfaceLine.ConstructionProperties()) - }); + }, new MacroStabilityInwardsPreconsolidationStress[0]); // Call UpliftVanSoilProfile upliftVanSoilProfile = UpliftVanSoilProfileConverter.Convert(profile);