Index: Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Create/Piping/StochasticSoilModelCreateExtensionsTest.cs =================================================================== diff -u -r3fb0df0ed6e64657154700ee7706e035d5bf99f5 -r94242c0e8dc46889015a0cc34aee3e37786bb30a --- Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Create/Piping/StochasticSoilModelCreateExtensionsTest.cs (.../StochasticSoilModelCreateExtensionsTest.cs) (revision 3fb0df0ed6e64657154700ee7706e035d5bf99f5) +++ Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Create/Piping/StochasticSoilModelCreateExtensionsTest.cs (.../StochasticSoilModelCreateExtensionsTest.cs) (revision 94242c0e8dc46889015a0cc34aee3e37786bb30a) @@ -57,7 +57,7 @@ int order = new Random(1).Next(); const string testName = "testName"; const string testSegmentName = "testSegmentName"; - var stochasticSoilModel = new StochasticSoilModel(-1, testName, testSegmentName); + var stochasticSoilModel = new StochasticSoilModel(-1, testName); var registry = new PersistenceRegistry(); // Call @@ -77,7 +77,7 @@ // Setup const string testName = "testName"; const string testSegmentName = "testSegmentName"; - var stochasticSoilModel = new StochasticSoilModel(-1, testName, testSegmentName); + var stochasticSoilModel = new StochasticSoilModel(-1, testName); var registry = new PersistenceRegistry(); // Call @@ -97,7 +97,7 @@ public void Create_WithStochasticSoilProfiles_ReturnsStochasticSoilModelEntityWithPropertiesAndStochasticSoilProfileEntitiesSet() { // Setup - var stochasticSoilModel = new StochasticSoilModel(-1, "testName", "testSegmentName"); + var stochasticSoilModel = new StochasticSoilModel(-1, "testName"); stochasticSoilModel.StochasticSoilProfiles.Add(new StochasticSoilProfile(0.5, SoilProfileType.SoilProfile1D, -1) { SoilProfile = new TestPipingSoilProfile() @@ -120,7 +120,7 @@ public void Create_WithGeometryPoints_ReturnsStochasticSoilModelEntityWithPropertiesAndStochasticSoilModelSegmentPointEntitiesSet() { // Setup - var stochasticSoilModel = new StochasticSoilModel(-1, "testName", "testSegmentName"); + var stochasticSoilModel = new StochasticSoilModel(-1, "testName"); stochasticSoilModel.Geometry.AddRange(new[] { new Point2D(-12.34, 56.78), @@ -141,7 +141,7 @@ public void Create_SameModelCreatedMultipleTimes_ReturnSameEntity() { // Setup - var soilModel = new StochasticSoilModel(1, "A", "B"); + var soilModel = new StochasticSoilModel(1, "A"); var registry = new PersistenceRegistry();