Index: Ringtoets/Piping/test/Ringtoets.Piping.Data.TestUtil/TestStochasticSoilModel.cs =================================================================== diff -u -rae09732abad92d670274d8661856965b59021cd5 -r5e70f173b3839314912e086b6c1c784b975ee646 --- Ringtoets/Piping/test/Ringtoets.Piping.Data.TestUtil/TestStochasticSoilModel.cs (.../TestStochasticSoilModel.cs) (revision ae09732abad92d670274d8661856965b59021cd5) +++ Ringtoets/Piping/test/Ringtoets.Piping.Data.TestUtil/TestStochasticSoilModel.cs (.../TestStochasticSoilModel.cs) (revision 5e70f173b3839314912e086b6c1c784b975ee646) @@ -26,19 +26,21 @@ { public class TestStochasticSoilModel : StochasticSoilModel { - public TestStochasticSoilModel() : base(0, string.Empty, string.Empty) + public TestStochasticSoilModel(string name) : base(0, name, string.Empty) { StochasticSoilProfiles.AddRange(new[] { new StochasticSoilProfile(0.5, SoilProfileType.SoilProfile1D, 0) { - SoilProfile = new TestPipingSoilProfile() + SoilProfile = new TestPipingSoilProfile("A") }, new StochasticSoilProfile(0.5, SoilProfileType.SoilProfile1D, 0) { - SoilProfile = new TestPipingSoilProfile() + SoilProfile = new TestPipingSoilProfile("B") } }); } + public TestStochasticSoilModel() : this(string.Empty) + { } } } \ No newline at end of file