Index: Ringtoets/Common/test/Ringtoets.Common.Service.Test/DesignWaterLevelCalculationActivityTest.cs =================================================================== diff -u -r25af784999b04dc8156272632e7f6c638c55a18c -rda7bb9a6d96d7118d6dcdc2ee17a11d5b43f44c7 --- Ringtoets/Common/test/Ringtoets.Common.Service.Test/DesignWaterLevelCalculationActivityTest.cs (.../DesignWaterLevelCalculationActivityTest.cs) (revision 25af784999b04dc8156272632e7f6c638c55a18c) +++ Ringtoets/Common/test/Ringtoets.Common.Service.Test/DesignWaterLevelCalculationActivityTest.cs (.../DesignWaterLevelCalculationActivityTest.cs) (revision da7bb9a6d96d7118d6dcdc2ee17a11d5b43f44c7) @@ -59,7 +59,7 @@ { ShouldIllustrationPointsBeCalculated = true }, - Output = new TestHydraulicBoundaryLocationOutput(1.0, CalculationConvergence.CalculatedConverged) + Output = new TestHydraulicBoundaryLocationCalculationOutput(1.0, CalculationConvergence.CalculatedConverged) }); yield return new TestCaseData(new HydraulicBoundaryLocationCalculation(new TestHydraulicBoundaryLocation("Test"))); @@ -275,7 +275,7 @@ { ShouldIllustrationPointsBeCalculated = false }, - Output = new TestHydraulicBoundaryLocationOutput(3.0, CalculationConvergence.CalculatedConverged) + Output = new TestHydraulicBoundaryLocationCalculationOutput(3.0, CalculationConvergence.CalculatedConverged) }; var activity = new DesignWaterLevelCalculationActivity(hydraulicBoundaryLocationCalculation, @@ -330,7 +330,7 @@ } // Assert - HydraulicBoundaryLocationOutput calculationOutput = hydraulicBoundaryLocationCalculation.Output; + HydraulicBoundaryLocationCalculationOutput calculationOutput = hydraulicBoundaryLocationCalculation.Output; Assert.IsNotNull(calculationOutput); Assert.AreEqual(expectedDesignWaterLevel, calculationOutput.Result, calculationOutput.Result.GetAccuracy()); Assert.AreEqual(CalculationConvergence.CalculatedConverged, calculationOutput.CalculationConvergence); @@ -373,7 +373,7 @@ mockRepository.ReplayAll(); - var output = new TestHydraulicBoundaryLocationOutput(double.NaN, CalculationConvergence.CalculatedConverged); + var output = new TestHydraulicBoundaryLocationCalculationOutput(double.NaN, CalculationConvergence.CalculatedConverged); var hydraulicBoundaryLocationCalculation = new HydraulicBoundaryLocationCalculation(new TestHydraulicBoundaryLocation(locationName)) { InputParameters = @@ -429,7 +429,7 @@ { ShouldIllustrationPointsBeCalculated = true }, - Output = new TestHydraulicBoundaryLocationOutput(double.NaN, CalculationConvergence.CalculatedConverged) + Output = new TestHydraulicBoundaryLocationCalculationOutput(double.NaN, CalculationConvergence.CalculatedConverged) }; const double norm = 1.0 / 300;