Index: Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Forms.Test/Views/MacroStabilityInwardsOutputChartControlTest.cs =================================================================== diff -u -r76556536338301f3d3e7ba03313351e1d9a6595e -r0b9a49c38d6a29225f3d5982337d68c03c2d878f --- Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Forms.Test/Views/MacroStabilityInwardsOutputChartControlTest.cs (.../MacroStabilityInwardsOutputChartControlTest.cs) (revision 76556536338301f3d3e7ba03313351e1d9a6595e) +++ Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Forms.Test/Views/MacroStabilityInwardsOutputChartControlTest.cs (.../MacroStabilityInwardsOutputChartControlTest.cs) (revision 0b9a49c38d6a29225f3d5982337d68c03c2d878f) @@ -259,7 +259,7 @@ private static MacroStabilityInwardsStochasticSoilProfile GetStochasticSoilProfile2D() { - return new MacroStabilityInwardsStochasticSoilProfile(0.5, new MacroStabilityInwardsSoilProfile2D("Ondergrondschematisatie", new[] + var layers = new[] { new MacroStabilityInwardsSoilLayer2D(new Ring(new List { @@ -277,7 +277,29 @@ }), new List()) { Data = new MacroStabilityInwardsSoilLayerData(), - NestedLayers = Enumerable.Empty() + NestedLayers = new[] + { + new MacroStabilityInwardsSoilLayer2D(new Ring(new List + { + new Point2D(4.0, 2.0), + new Point2D(0.0, 2.5) + }), new List()) + { + Data = new MacroStabilityInwardsSoilLayerData(), + NestedLayers = new[] + { + new MacroStabilityInwardsSoilLayer2D(new Ring(new List + { + new Point2D(4.0, 2.0), + new Point2D(0.0, 2.5) + }), new List()) + { + Data = new MacroStabilityInwardsSoilLayerData(), + NestedLayers = Enumerable.Empty() + } + } + } + } }, new MacroStabilityInwardsSoilLayer2D(new Ring(new List { @@ -288,7 +310,11 @@ Data = new MacroStabilityInwardsSoilLayerData(), NestedLayers = Enumerable.Empty() } - }, new List())); + }; + + return new MacroStabilityInwardsStochasticSoilProfile(0.5, new MacroStabilityInwardsSoilProfile2D("Ondergrondschematisatie", + layers, + new List())); } private static MacroStabilityInwardsSurfaceLine GetSurfaceLineWithGeometry()