Index: Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Service.Test/MacroStabilityInwardsCalculationServiceTest.cs =================================================================== diff -u -r497172e737ffc201c0f905e85a246cdba3c0cb1c -r0c1eb485edd1764f19829f29bdad41e3343f35c1 --- Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Service.Test/MacroStabilityInwardsCalculationServiceTest.cs (.../MacroStabilityInwardsCalculationServiceTest.cs) (revision 497172e737ffc201c0f905e85a246cdba3c0cb1c) +++ Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Service.Test/MacroStabilityInwardsCalculationServiceTest.cs (.../MacroStabilityInwardsCalculationServiceTest.cs) (revision 0c1eb485edd1764f19829f29bdad41e3343f35c1) @@ -248,7 +248,7 @@ testCalculation.Name = name; - using (new MacroStabilityInwardsCalculatorFactoryConfig(new TestMacroStabilityInwardsCalculatorFactory())) + using (new MacroStabilityInwardsCalculatorFactoryConfig()) { Action call = () => { @@ -275,7 +275,7 @@ public void Calculate_ValidCalculationNoOutput_ShouldSetOutput() { // Setup - using (new MacroStabilityInwardsCalculatorFactoryConfig(new TestMacroStabilityInwardsCalculatorFactory())) + using (new MacroStabilityInwardsCalculatorFactoryConfig()) { // Precondition Assert.IsNull(testCalculation.Output); @@ -297,7 +297,7 @@ testCalculation.Output = output; - using (new MacroStabilityInwardsCalculatorFactoryConfig(new TestMacroStabilityInwardsCalculatorFactory())) + using (new MacroStabilityInwardsCalculatorFactoryConfig()) { // Precondition Assert.IsTrue(MacroStabilityInwardsCalculationService.Validate(testCalculation)); @@ -314,7 +314,7 @@ public void Calculate_CompleteInput_SetsInputOnCalculator() { // Setup - using (new MacroStabilityInwardsCalculatorFactoryConfig(new TestMacroStabilityInwardsCalculatorFactory())) + using (new MacroStabilityInwardsCalculatorFactoryConfig()) { // Call MacroStabilityInwardsCalculationService.Calculate(testCalculation); @@ -328,7 +328,7 @@ public void Calculate_CalculationRan_SetOutput() { // Setup - using (new MacroStabilityInwardsCalculatorFactoryConfig(new TestMacroStabilityInwardsCalculatorFactory())) + using (new MacroStabilityInwardsCalculatorFactoryConfig()) { var calculatorFactory = (TestMacroStabilityInwardsCalculatorFactory) MacroStabilityInwardsCalculatorFactory.Instance;