Index: Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.IO.Test/SoilProfiles/MacroStabilityInwardsStochasticSoilModelTransformerTest.cs =================================================================== diff -u -r1a3f904157a3f86e702ea8086bee67e780da7856 -r7078f0ab14bab4985d611c668d73267e3a37c8d0 --- Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.IO.Test/SoilProfiles/MacroStabilityInwardsStochasticSoilModelTransformerTest.cs (.../MacroStabilityInwardsStochasticSoilModelTransformerTest.cs) (revision 1a3f904157a3f86e702ea8086bee67e780da7856) +++ Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.IO.Test/SoilProfiles/MacroStabilityInwardsStochasticSoilModelTransformerTest.cs (.../MacroStabilityInwardsStochasticSoilModelTransformerTest.cs) (revision 7078f0ab14bab4985d611c668d73267e3a37c8d0) @@ -169,24 +169,29 @@ var expectedStochasticSoilProfile = new MacroStabilityInwardsStochasticSoilProfile(probability, new MacroStabilityInwardsSoilProfile2D("test", new[] { new MacroStabilityInwardsSoilLayer2D(new Ring(new[] - { - new Point2D(0.0, 0.0), - new Point2D(1.0, 0.0) - }), new[] - { - new Ring(new[] - { - new Point2D(1.0, 1.0), - new Point2D(2.0, 1.0) - }) - }) - { - Data = - { - UsePop = true, - ShearStrengthModel = MacroStabilityInwardsShearStrengthModel.CPhi - } - } + { + new Point2D(1.0, 1.0), + new Point2D(2.0, 1.0) + }), + Enumerable.Empty(), + new MacroStabilityInwardsSoilLayerData + { + UsePop = true + }, + new[] + { + new MacroStabilityInwardsSoilLayer2D(new Ring(new[] + { + new Point2D(0.0, 0.0), + new Point2D(1.0, 0.0) + }), + Enumerable.Empty(), + new MacroStabilityInwardsSoilLayerData + { + UsePop = true + }, + Enumerable.Empty()) + }) }, Enumerable.Empty())); AssertStochasticSoilProfile(expectedStochasticSoilProfile, transformedModel.StochasticSoilProfiles.First()); }