Index: Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.Test/UpliftVanCalculatorTest.cs =================================================================== diff -u -r7e9a99c5e23b3b955a2ad505e01ee967985aa0d3 -r52a4ba388df217931f26d1815d64b72f36676612 --- Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.Test/UpliftVanCalculatorTest.cs (.../UpliftVanCalculatorTest.cs) (revision 7e9a99c5e23b3b955a2ad505e01ee967985aa0d3) +++ Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.Test/UpliftVanCalculatorTest.cs (.../UpliftVanCalculatorTest.cs) (revision 52a4ba388df217931f26d1815d64b72f36676612) @@ -51,7 +51,7 @@ TestDelegate call = () => new UpliftVanCalculator(null, factory); // Assert - const string expectedMessage = "MacroStabilityInwardsCalculatorInput required for creating a MacroStabilityInwardsCalculator."; + const string expectedMessage = "UpliftVanCalculatorInput required for creating a MacroStabilityInwardsCalculator."; TestHelper.AssertThrowsArgumentExceptionAndTestMessage(call, expectedMessage); mocks.VerifyAll(); } @@ -64,7 +64,7 @@ TestDelegate call = () => new UpliftVanCalculator(input, null); // Assert - const string expectedMessage = "IMacroStabilityInwardsSubCalculatorFactory required for creating a MacroStabilityInwardsCalculator."; + const string expectedMessage = "IMacroStabilityInwardsKernelFactory required for creating a MacroStabilityInwardsCalculator."; TestHelper.AssertThrowsArgumentExceptionAndTestMessage(call, expectedMessage); } @@ -127,10 +127,10 @@ { // Setup var input = new UpliftVanCalculatorInput(CreateSimpleConstructionProperties()); - var testMacroStabilityInwardsSubCalculatorFactory = new TestMacroStabilityInwardsKernelFactory(); + var testMacroStabilityInwardsKernelFactory = new TestMacroStabilityInwardsKernelFactory(); // Call - List validationResult = new UpliftVanCalculator(input, testMacroStabilityInwardsSubCalculatorFactory).Validate(); + List validationResult = new UpliftVanCalculator(input, testMacroStabilityInwardsKernelFactory).Validate(); // Assert CollectionAssert.IsEmpty(validationResult);