Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/SoilProfile/SoilProfile2DReaderTest.cs =================================================================== diff -u -rfb494de3c4b854048e775f41b2905860beedb3b5 -re14d435cf9328ecd215e94bd3a34f126b2885e6d --- Ringtoets/Common/test/Ringtoets.Common.IO.Test/SoilProfile/SoilProfile2DReaderTest.cs (.../SoilProfile2DReaderTest.cs) (revision fb494de3c4b854048e775f41b2905860beedb3b5) +++ Ringtoets/Common/test/Ringtoets.Common.IO.Test/SoilProfile/SoilProfile2DReaderTest.cs (.../SoilProfile2DReaderTest.cs) (revision e14d435cf9328ecd215e94bd3a34f126b2885e6d) @@ -280,7 +280,7 @@ 0.01, 0, 0.01 - }, soilProfile2D.Layers.Select(l => l.AbovePhreaticLevelDeviation)); + }, soilProfile2D.Layers.Select(l => l.AbovePhreaticLevelCoefficientOfVariation)); CollectionAssert.AreEqual(new[] { 10, @@ -305,7 +305,7 @@ 0.1, 0.09999999999999999, 0.09999999999999999 - }, soilProfile2D.Layers.Select(l => l.CohesionDeviation)); + }, soilProfile2D.Layers.Select(l => l.CohesionCoefficientOfVariation)); CollectionAssert.AreEqual(new[] { 0.01, @@ -330,7 +330,7 @@ 10, 0.01, 0.01 - }, soilProfile2D.Layers.Select(l => l.FrictionAngleDeviation)); + }, soilProfile2D.Layers.Select(l => l.FrictionAngleCoefficientOfVariation)); CollectionAssert.AreEqual(new[] { 0, @@ -355,7 +355,7 @@ 1, 0.029285714285714283, 0.011153846153846153 - }, soilProfile2D.Layers.Select(l => l.ShearStrengthRatioDeviation)); + }, soilProfile2D.Layers.Select(l => l.ShearStrengthRatioCoefficientOfVariation)); CollectionAssert.AreEqual(new[] { 1, @@ -380,7 +380,7 @@ 1, 0.1, 0.09999999999999999 - }, soilProfile2D.Layers.Select(l => l.StrengthIncreaseExponentDeviation)); + }, soilProfile2D.Layers.Select(l => l.StrengthIncreaseExponentCoefficientOfVariation)); CollectionAssert.AreEqual(new[] { 0, @@ -405,7 +405,7 @@ 0.000990990990990991, 0.000990990990990991, 0.000990990990990991 - }, soilProfile2D.Layers.Select(l => l.PopDeviation)); + }, soilProfile2D.Layers.Select(l => l.PopCoefficientOfVariation)); CollectionAssert.AreEqual(new[] { 0.01, @@ -459,32 +459,32 @@ Assert.IsNull(soilLayer.AbovePhreaticLevelDistribution); Assert.IsNaN(soilLayer.AbovePhreaticLevelMean); - Assert.IsNaN(soilLayer.AbovePhreaticLevelDeviation); + Assert.IsNaN(soilLayer.AbovePhreaticLevelCoefficientOfVariation); Assert.IsNaN(soilLayer.AbovePhreaticLevelShift); Assert.IsNull(soilLayer.CohesionDistribution); Assert.IsNaN(soilLayer.CohesionMean); - Assert.IsNaN(soilLayer.CohesionDeviation); + Assert.IsNaN(soilLayer.CohesionCoefficientOfVariation); Assert.IsNaN(soilLayer.CohesionShift); Assert.IsNull(soilLayer.FrictionAngleDistribution); Assert.IsNaN(soilLayer.FrictionAngleMean); - Assert.IsNaN(soilLayer.FrictionAngleDeviation); + Assert.IsNaN(soilLayer.FrictionAngleCoefficientOfVariation); Assert.IsNaN(soilLayer.FrictionAngleShift); Assert.IsNull(soilLayer.ShearStrengthRatioDistribution); Assert.IsNaN(soilLayer.ShearStrengthRatioMean); - Assert.IsNaN(soilLayer.ShearStrengthRatioDeviation); + Assert.IsNaN(soilLayer.ShearStrengthRatioCoefficientOfVariation); Assert.IsNaN(soilLayer.ShearStrengthRatioShift); Assert.IsNull(soilLayer.StrengthIncreaseExponentDistribution); Assert.IsNaN(soilLayer.StrengthIncreaseExponentMean); - Assert.IsNaN(soilLayer.StrengthIncreaseExponentDeviation); + Assert.IsNaN(soilLayer.StrengthIncreaseExponentCoefficientOfVariation); Assert.IsNaN(soilLayer.StrengthIncreaseExponentShift); Assert.IsNull(soilLayer.PopDistribution); Assert.IsNaN(soilLayer.PopMean); - Assert.IsNaN(soilLayer.PopDeviation); + Assert.IsNaN(soilLayer.PopCoefficientOfVariation); Assert.IsNaN(soilLayer.PopShift); }