Index: Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.Test/MacroStabilityInwardsCalculatorTest.cs =================================================================== diff -u -r90e819fbef3e545d8b192653668e9a92b5a0d350 -rdc76c02e3487559413087637935f008147927ea0 --- Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.Test/MacroStabilityInwardsCalculatorTest.cs (.../MacroStabilityInwardsCalculatorTest.cs) (revision 90e819fbef3e545d8b192653668e9a92b5a0d350) +++ Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.Test/MacroStabilityInwardsCalculatorTest.cs (.../MacroStabilityInwardsCalculatorTest.cs) (revision dc76c02e3487559413087637935f008147927ea0) @@ -92,8 +92,8 @@ var random = new Random(11); var input = new MacroStabilityInwardsCalculatorInput(CreateSimpleConstructionProperties()); - var testMacroStabilityInwardsSubCalculatorFactory = new TestMacroStabilityInwardsKernelFactory(); - UpliftVanCalculatorStub calculator = testMacroStabilityInwardsSubCalculatorFactory.LastCreatedUpliftVanKernel; + var testMacroStabilityInwardsKernelFactory = new TestMacroStabilityInwardsKernelFactory(); + UpliftVanKernelStub calculator = testMacroStabilityInwardsKernelFactory.LastCreatedUpliftVanKernel; calculator.FactoryOfStability = random.NextDouble(); calculator.ZValue = random.NextDouble(); calculator.ForbiddenZonesXEntryMax = random.NextDouble(); @@ -104,7 +104,7 @@ calculator.SlipPlaneResult = SlipPlaneUpliftVanTestFactory.Create(); // Call - MacroStabilityInwardsCalculatorResult actual = new MacroStabilityInwardsCalculator(input, testMacroStabilityInwardsSubCalculatorFactory).Calculate(); + MacroStabilityInwardsCalculatorResult actual = new MacroStabilityInwardsCalculator(input, testMacroStabilityInwardsKernelFactory).Calculate(); // Assert Assert.IsNotNull(actual); @@ -119,7 +119,7 @@ MacroStabilityInwardsCalculatorResultHelper.AssertSlipPlaneGrid(MacroStabilityInwardsUpliftVanCalculationGridResultCreator.Create(calculator.SlipPlaneResult), actual.UpliftVanCalculationGrid); - Assert.IsTrue(testMacroStabilityInwardsSubCalculatorFactory.LastCreatedUpliftVanKernel.Calculated); + Assert.IsTrue(testMacroStabilityInwardsKernelFactory.LastCreatedUpliftVanKernel.Calculated); } [Test]