Index: Application/Ringtoets/test/Application.Ringtoets.Storage.TestUtil/RingtoetsProjectTestHelper.cs =================================================================== diff -u -rafa720a0da947ce7179500fefc71203d773de21e -r26f527fb809a2325c8f883ece9da01a8f8040eb3 --- Application/Ringtoets/test/Application.Ringtoets.Storage.TestUtil/RingtoetsProjectTestHelper.cs (.../RingtoetsProjectTestHelper.cs) (revision afa720a0da947ce7179500fefc71203d773de21e) +++ Application/Ringtoets/test/Application.Ringtoets.Storage.TestUtil/RingtoetsProjectTestHelper.cs (.../RingtoetsProjectTestHelper.cs) (revision 26f527fb809a2325c8f883ece9da01a8f8040eb3) @@ -46,15 +46,14 @@ using Ringtoets.Integration.Data.StandAlone.SectionResults; using Ringtoets.MacroStabilityInwards.Data; using Ringtoets.Piping.Data; +using Ringtoets.Piping.Data.SoilProfile; using Ringtoets.Piping.KernelWrapper.TestUtil; using Ringtoets.Piping.Primitives; using Ringtoets.Revetment.Data; using Ringtoets.StabilityPointStructures.Data; using Ringtoets.StabilityPointStructures.Data.TestUtil; using Ringtoets.StabilityStoneCover.Data; using Ringtoets.WaveImpactAsphaltCover.Data; -using StochasticSoilModel = Ringtoets.Piping.Data.StochasticSoilModel; -using StochasticSoilProfile = Ringtoets.Piping.Data.StochasticSoilProfile; namespace Application.Ringtoets.Storage.TestUtil { @@ -874,7 +873,7 @@ pipingFailureMechanism.StochasticSoilModels.AddRange(new[] { - new StochasticSoilModel("modelName") + new PipingStochasticSoilModel("modelName") { Geometry = { @@ -884,14 +883,8 @@ }, StochasticSoilProfiles = { - new StochasticSoilProfile(0.2, SoilProfileType.SoilProfile1D, -1) - { - SoilProfile = pipingSoilProfile - }, - new StochasticSoilProfile(0.8, SoilProfileType.SoilProfile2D, -1) - { - SoilProfile = new TestPipingSoilProfile() - } + new PipingStochasticSoilProfile(0.2, pipingSoilProfile), + new PipingStochasticSoilProfile(0.8, new TestPipingSoilProfile()) } } }, "some/path/to/stochasticSoilModelFile");