Index: Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Primitives.Test/MacroStabilityInwardsSoilLayerPropertiesTest.cs =================================================================== diff -u -rea4edac77eb5c9870c9585e0ddc2428423f8265e -rff1b7c6a13dfcb3583d654055b422ec99ae7dc43 --- Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Primitives.Test/MacroStabilityInwardsSoilLayerPropertiesTest.cs (.../MacroStabilityInwardsSoilLayerPropertiesTest.cs) (revision ea4edac77eb5c9870c9585e0ddc2428423f8265e) +++ Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Primitives.Test/MacroStabilityInwardsSoilLayerPropertiesTest.cs (.../MacroStabilityInwardsSoilLayerPropertiesTest.cs) (revision ff1b7c6a13dfcb3583d654055b422ec99ae7dc43) @@ -50,7 +50,7 @@ Assert.IsNaN(properties.AbovePhreaticLevelShift); Assert.IsNaN(properties.BelowPhreaticLevelMean); - Assert.IsNaN(properties.BelowPhreaticLevelDeviation); + Assert.IsNaN(properties.BelowPhreaticLevelCoefficientOfVariation); Assert.IsNaN(properties.BelowPhreaticLevelShift); Assert.IsNaN(properties.CohesionMean); @@ -183,7 +183,7 @@ yield return new TestCaseData(new Action(lp => lp.AbovePhreaticLevelCoefficientOfVariation = 1.0 - lp.AbovePhreaticLevelCoefficientOfVariation)); yield return new TestCaseData(new Action(lp => lp.AbovePhreaticLevelShift = 1.0 - lp.AbovePhreaticLevelShift)); yield return new TestCaseData(new Action(lp => lp.BelowPhreaticLevelMean = 1.0 - lp.BelowPhreaticLevelMean)); - yield return new TestCaseData(new Action(lp => lp.BelowPhreaticLevelDeviation = 1.0 - lp.BelowPhreaticLevelDeviation)); + yield return new TestCaseData(new Action(lp => lp.BelowPhreaticLevelCoefficientOfVariation = 1.0 - lp.BelowPhreaticLevelCoefficientOfVariation)); yield return new TestCaseData(new Action(lp => lp.BelowPhreaticLevelShift = 1.0 - lp.BelowPhreaticLevelShift)); yield return new TestCaseData(new Action(lp => lp.CohesionMean = 1.0 - lp.CohesionMean)); yield return new TestCaseData(new Action(lp => lp.CohesionCoefficientOfVariation = 1.0 - lp.CohesionCoefficientOfVariation)); @@ -247,7 +247,7 @@ AbovePhreaticLevelCoefficientOfVariation = random.NextDouble(), AbovePhreaticLevelShift = random.NextDouble(), BelowPhreaticLevelMean = random.NextDouble(), - BelowPhreaticLevelDeviation = random.NextDouble(), + BelowPhreaticLevelCoefficientOfVariation = random.NextDouble(), BelowPhreaticLevelShift = random.NextDouble(), CohesionMean = random.NextDouble(), CohesionCoefficientOfVariation = random.NextDouble(),