Index: Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Plugin.Test/FileImporter/MacroStabilityInwardsStochasticSoilModelReplaceDataStrategyTest.cs =================================================================== diff -u -rb8493c6fb982b455e36129083cc009c5c07a7d05 -rda4a311b2ac60defe1a27a61c8d151f47268a941 --- Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Plugin.Test/FileImporter/MacroStabilityInwardsStochasticSoilModelReplaceDataStrategyTest.cs (.../MacroStabilityInwardsStochasticSoilModelReplaceDataStrategyTest.cs) (revision b8493c6fb982b455e36129083cc009c5c07a7d05) +++ Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Plugin.Test/FileImporter/MacroStabilityInwardsStochasticSoilModelReplaceDataStrategyTest.cs (.../MacroStabilityInwardsStochasticSoilModelReplaceDataStrategyTest.cs) (revision da4a311b2ac60defe1a27a61c8d151f47268a941) @@ -95,8 +95,8 @@ // Setup var importedStochasticSoilModels = new[] { - new TestStochasticSoilModel("A"), - new TestStochasticSoilModel("B") + new TestMacroStabilityInwardsStochasticSoilModel("A"), + new TestMacroStabilityInwardsStochasticSoilModel("B") }; var failureMechanism = new MacroStabilityInwardsFailureMechanism(); failureMechanism.StochasticSoilModels.AddRange(importedStochasticSoilModels, sourceFilePath); @@ -121,8 +121,8 @@ var failureMechanism = new MacroStabilityInwardsFailureMechanism(); failureMechanism.StochasticSoilModels.AddRange(new[] { - new TestStochasticSoilModel("A"), - new TestStochasticSoilModel("B") + new TestMacroStabilityInwardsStochasticSoilModel("A"), + new TestMacroStabilityInwardsStochasticSoilModel("B") }, sourceFilePath); var strategy = new MacroStabilityInwardsStochasticSoilModelReplaceDataStrategy(failureMechanism); @@ -142,15 +142,15 @@ public void UpdateModelWithImportedData_WithCurrentModelAndImportedModel_ModelReplaced() { // Setup - var existingModel = new TestStochasticSoilModel("existing"); + var existingModel = new TestMacroStabilityInwardsStochasticSoilModel("existing"); var failureMechanism = new MacroStabilityInwardsFailureMechanism(); failureMechanism.StochasticSoilModels.AddRange(new[] { existingModel }, sourceFilePath); var strategy = new MacroStabilityInwardsStochasticSoilModelReplaceDataStrategy(failureMechanism); - var readModel = new TestStochasticSoilModel("read"); + var readModel = new TestMacroStabilityInwardsStochasticSoilModel("read"); // Call IEnumerable affectedObjects = strategy.UpdateModelWithImportedData(new[] @@ -170,7 +170,7 @@ public void UpdateModelWithImportedData_CalculationWithOutputAssignedRemovedSoilModelAndProfile_CalculationUpdatedAndCalculationAndInputReturned() { // Setup - var existingModel = new TestStochasticSoilModel(); + var existingModel = new TestMacroStabilityInwardsStochasticSoilModel(); var calculation = new MacroStabilityInwardsCalculationScenario(); calculation.InputParameters.StochasticSoilModel = existingModel; calculation.InputParameters.StochasticSoilProfile = existingModel.StochasticSoilProfiles[0]; @@ -208,8 +208,8 @@ // Setup var importedStochasticSoilModels = new[] { - new TestStochasticSoilModel("B"), - new TestStochasticSoilModel("B") + new TestMacroStabilityInwardsStochasticSoilModel("B"), + new TestMacroStabilityInwardsStochasticSoilModel("B") }; var strategy = new MacroStabilityInwardsStochasticSoilModelReplaceDataStrategy(new MacroStabilityInwardsFailureMechanism());