Index: Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.Test/UpliftVanCalculatorTest.cs =================================================================== diff -u -r551dedc408a4155fc9484b03107b533347a8b4fb -r497172e737ffc201c0f905e85a246cdba3c0cb1c --- Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.Test/UpliftVanCalculatorTest.cs (.../UpliftVanCalculatorTest.cs) (revision 551dedc408a4155fc9484b03107b533347a8b4fb) +++ Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.Test/UpliftVanCalculatorTest.cs (.../UpliftVanCalculatorTest.cs) (revision 497172e737ffc201c0f905e85a246cdba3c0cb1c) @@ -60,7 +60,7 @@ public void Constructor_FactoryNull_ArgumentNullException() { // Call - var input = new MacroStabilityInwardsCalculatorInput(CreateSimpleConstructionProperties()); + var input = new UpliftVanCalculatorInput(CreateSimpleConstructionProperties()); TestDelegate call = () => new UpliftVanCalculator(input, null); // Assert @@ -76,7 +76,7 @@ var factory = mocks.Stub(); mocks.ReplayAll(); - var input = new MacroStabilityInwardsCalculatorInput(CreateSimpleConstructionProperties()); + var input = new UpliftVanCalculatorInput(CreateSimpleConstructionProperties()); // Call var calculator = new UpliftVanCalculator(input, factory); @@ -91,7 +91,7 @@ // Setup var random = new Random(11); - var input = new MacroStabilityInwardsCalculatorInput(CreateSimpleConstructionProperties()); + var input = new UpliftVanCalculatorInput(CreateSimpleConstructionProperties()); var testMacroStabilityInwardsKernelFactory = new TestMacroStabilityInwardsKernelFactory(); UpliftVanKernelStub upliftVanKernel = testMacroStabilityInwardsKernelFactory.LastCreatedUpliftVanKernel; upliftVanKernel.FactorOfStability = random.NextDouble(); @@ -126,7 +126,7 @@ public void Validate_Always_ReturnEmptyList() { // Setup - var input = new MacroStabilityInwardsCalculatorInput(CreateSimpleConstructionProperties()); + var input = new UpliftVanCalculatorInput(CreateSimpleConstructionProperties()); var testMacroStabilityInwardsSubCalculatorFactory = new TestMacroStabilityInwardsKernelFactory(); // Call @@ -136,12 +136,12 @@ CollectionAssert.IsEmpty(validationResult); } - private static MacroStabilityInwardsCalculatorInput.ConstructionProperties CreateSimpleConstructionProperties() + private static UpliftVanCalculatorInput.ConstructionProperties CreateSimpleConstructionProperties() { var random = new Random(21); MacroStabilityInwardsSurfaceLine surfaceLine = CreateValidSurfaceLine(); - return new MacroStabilityInwardsCalculatorInput.ConstructionProperties + return new UpliftVanCalculatorInput.ConstructionProperties { AssessmentLevel = random.NextDouble(), SurfaceLine = surfaceLine,