Index: Ringtoets/Piping/test/Ringtoets.Piping.Service.Test/PipingInputServiceTest.cs =================================================================== diff -u -r81fa8a9bf3bd503cbd280e88b8f6037a840cff12 -r94242c0e8dc46889015a0cc34aee3e37786bb30a --- Ringtoets/Piping/test/Ringtoets.Piping.Service.Test/PipingInputServiceTest.cs (.../PipingInputServiceTest.cs) (revision 81fa8a9bf3bd503cbd280e88b8f6037a840cff12) +++ Ringtoets/Piping/test/Ringtoets.Piping.Service.Test/PipingInputServiceTest.cs (.../PipingInputServiceTest.cs) (revision 94242c0e8dc46889015a0cc34aee3e37786bb30a) @@ -32,7 +32,7 @@ public void SetMatchingStochasticSoilModel_SurfaceLineOverlappingSingleSoilModel_SetsSoilModel() { // Setup - var soilModel = new StochasticSoilModel(1, "A", "B"); + var soilModel = new StochasticSoilModel(1, "A"); var pipingInput = new PipingInput(new GeneralPipingInput()); // Call @@ -50,8 +50,8 @@ { // Setup var pipingInput = new PipingInput(new GeneralPipingInput()); - var soilModel1 = new StochasticSoilModel(1, "A", "B"); - var soilModel2 = new StochasticSoilModel(2, "C", "D"); + var soilModel1 = new StochasticSoilModel(1, "A"); + var soilModel2 = new StochasticSoilModel(2, "C"); // Call PipingInputService.SetMatchingStochasticSoilModel(pipingInput, new[] @@ -68,14 +68,14 @@ public void SetMatchingStochasticSoilModel_CurrentSoilModelNotInOverlappingMultipleSoilModels_ClearsModel() { // Setup - var nonOverlappingSoilModel = new StochasticSoilModel(1, "A", "B"); + var nonOverlappingSoilModel = new StochasticSoilModel(1, "A"); var pipingInput = new PipingInput(new GeneralPipingInput()) { StochasticSoilModel = nonOverlappingSoilModel }; - var soilModel1 = new StochasticSoilModel(1, "A", "B"); - var soilModel2 = new StochasticSoilModel(2, "C", "D"); + var soilModel1 = new StochasticSoilModel(1, "A"); + var soilModel2 = new StochasticSoilModel(2, "C"); // Call PipingInputService.SetMatchingStochasticSoilModel(pipingInput, new[] @@ -94,7 +94,7 @@ // Setup var soilProfile = new StochasticSoilProfile(0.3, SoilProfileType.SoilProfile1D, 1); - var soilModel = new StochasticSoilModel(1, "A", "B"); + var soilModel = new StochasticSoilModel(1, "A"); soilModel.StochasticSoilProfiles.Add(soilProfile); var pipingInput = new PipingInput(new GeneralPipingInput()) @@ -113,7 +113,7 @@ public void SyncStochasticSoilProfileWithStochasticSoilModel_MultipleStochasticSoilProfilesInStochasticSoilModel_DoesNotSetStochasticSoilProfile() { // Setup - var soilModel = new StochasticSoilModel(1, "A", "B"); + var soilModel = new StochasticSoilModel(1, "A"); soilModel.StochasticSoilProfiles.AddRange(new[] { new StochasticSoilProfile(0.0, SoilProfileType.SoilProfile1D, 1), @@ -137,7 +137,7 @@ // Setup var soilProfile = new StochasticSoilProfile(0.3, SoilProfileType.SoilProfile1D, 1); - var soilModel = new StochasticSoilModel(1, "A", "B"); + var soilModel = new StochasticSoilModel(1, "A"); soilModel.StochasticSoilProfiles.Add(soilProfile); var pipingInput = new PipingInput(new GeneralPipingInput())