Index: Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Primitives.Test/SoilLayerPropertiesTest.cs =================================================================== diff -u -r11770f197071c45397a34ec91fc3981acf05c850 -r602aa9de93c40ec9ca76e79530d13e7e32b45151 --- Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Primitives.Test/SoilLayerPropertiesTest.cs (.../SoilLayerPropertiesTest.cs) (revision 11770f197071c45397a34ec91fc3981acf05c850) +++ Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Primitives.Test/SoilLayerPropertiesTest.cs (.../SoilLayerPropertiesTest.cs) (revision 602aa9de93c40ec9ca76e79530d13e7e32b45151) @@ -43,7 +43,7 @@ Assert.AreEqual(Color.Empty, properties.Color); Assert.IsFalse(properties.UsePop); - Assert.AreEqual(ShearStrengthModel.None, properties.ShearStrengthModel); + Assert.AreEqual(MacroStabilityInwardsShearStrengthModel.None, properties.ShearStrengthModel); Assert.IsNaN(properties.AbovePhreaticLevelMean); Assert.IsNaN(properties.AbovePhreaticLevelDeviation); @@ -177,7 +177,7 @@ private static IEnumerable ChangeSingleProperties() { - yield return new TestCaseData(new Action(lp => lp.ShearStrengthModel = (ShearStrengthModel) 9)); + yield return new TestCaseData(new Action(lp => lp.ShearStrengthModel = (MacroStabilityInwardsShearStrengthModel) 9)); yield return new TestCaseData(new Action(lp => lp.MaterialName = "interesting")); yield return new TestCaseData(new Action(lp => lp.IsAquifer = !lp.IsAquifer)); yield return new TestCaseData(new Action(lp => lp.UsePop = !lp.UsePop)); @@ -248,7 +248,7 @@ Color = Color.FromKnownColor(random.NextEnumValue()), IsAquifer = random.NextBoolean(), UsePop = random.NextBoolean(), - ShearStrengthModel = random.NextEnumValue(), + ShearStrengthModel = random.NextEnumValue(), AbovePhreaticLevelMean = random.NextDouble(), AbovePhreaticLevelDeviation = random.NextDouble(), BelowPhreaticLevelMean = random.NextDouble(),