Index: Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.Test/TestMacroStabilityInwardsCalculatorFactoryTest.cs =================================================================== diff -u -r83f824a69b1a78fc4822ac19375e60e6c9be7d87 -r497172e737ffc201c0f905e85a246cdba3c0cb1c --- Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.Test/TestMacroStabilityInwardsCalculatorFactoryTest.cs (.../TestMacroStabilityInwardsCalculatorFactoryTest.cs) (revision 83f824a69b1a78fc4822ac19375e60e6c9be7d87) +++ Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.Test/TestMacroStabilityInwardsCalculatorFactoryTest.cs (.../TestMacroStabilityInwardsCalculatorFactoryTest.cs) (revision 497172e737ffc201c0f905e85a246cdba3c0cb1c) @@ -35,19 +35,19 @@ // Assert Assert.IsInstanceOf(factory); - Assert.IsNotNull(factory.LastCreatedCalculator); - Assert.IsNull(factory.LastCreatedCalculator.Input); + Assert.IsNotNull(factory.LastCreatedUpliftVanCalculator); + Assert.IsNull(factory.LastCreatedUpliftVanCalculator.Input); } [Test] - public void CreateCalculator_Always_ReturnStubWithInputSet() + public void CreateUpliftVanCalculatorr_Always_ReturnStubWithInputSet() { // Setup var factory = new TestMacroStabilityInwardsCalculatorFactory(); - var input = new MacroStabilityInwardsCalculatorInput(new MacroStabilityInwardsCalculatorInput.ConstructionProperties()); + var input = new UpliftVanCalculatorInput(new UpliftVanCalculatorInput.ConstructionProperties()); // Call - var calculator = (MacroStabilityInwardsCalculatorStub) factory.CreateCalculator(input, new TestMacroStabilityInwardsKernelFactory()); + var calculator = (UpliftVanCalculatorStub) factory.CreateUpliftVanCalculator(input, new TestMacroStabilityInwardsKernelFactory()); // Assert Assert.AreSame(input, calculator.Input);