Index: Ringtoets/GrassCoverErosionOutwards/test/Ringtoets.GrassCoverErosionOutwards.Forms.Test/PropertyClasses/GrassCoverErosionOutwardsDesignWaterLevelLocationsPropertiesTest.cs =================================================================== diff -u -r04780cbac72d279ad9173eb06075caa1cc5143cf -r38921822ee2e4dd7a4379d545bfbe3d4de116e87 --- Ringtoets/GrassCoverErosionOutwards/test/Ringtoets.GrassCoverErosionOutwards.Forms.Test/PropertyClasses/GrassCoverErosionOutwardsDesignWaterLevelLocationsPropertiesTest.cs (.../GrassCoverErosionOutwardsDesignWaterLevelLocationsPropertiesTest.cs) (revision 04780cbac72d279ad9173eb06075caa1cc5143cf) +++ Ringtoets/GrassCoverErosionOutwards/test/Ringtoets.GrassCoverErosionOutwards.Forms.Test/PropertyClasses/GrassCoverErosionOutwardsDesignWaterLevelLocationsPropertiesTest.cs (.../GrassCoverErosionOutwardsDesignWaterLevelLocationsPropertiesTest.cs) (revision 38921822ee2e4dd7a4379d545bfbe3d4de116e87) @@ -91,7 +91,7 @@ var location = new TestHydraulicBoundaryLocation(); var calculation = new HydraulicBoundaryLocationCalculation { - Output = new TestHydraulicBoundaryLocationOutput(1.5) + Output = new TestHydraulicBoundaryLocationOutput(1.5, CalculationConvergence.CalculatedConverged) }; var hydraulicBoundaryDatabase = new ObservableList { @@ -111,9 +111,8 @@ Assert.AreEqual(location.Id, locationProperties.Id); Assert.AreEqual(location.Location, locationProperties.Location); - RoundedDouble designWaterLevel = location.DesignWaterLevelCalculation1.Output.Result; + RoundedDouble designWaterLevel = calculation.Output.Result; Assert.AreEqual(designWaterLevel, locationProperties.DesignWaterLevel, designWaterLevel.GetAccuracy()); - Assert.AreEqual("Ja", locationProperties.Convergence); } } Index: Ringtoets/GrassCoverErosionOutwards/test/Ringtoets.GrassCoverErosionOutwards.Forms.Test/PropertyClasses/GrassCoverErosionOutwardsWaveHeightLocationsPropertiesTest.cs =================================================================== diff -u -r04780cbac72d279ad9173eb06075caa1cc5143cf -r38921822ee2e4dd7a4379d545bfbe3d4de116e87 --- Ringtoets/GrassCoverErosionOutwards/test/Ringtoets.GrassCoverErosionOutwards.Forms.Test/PropertyClasses/GrassCoverErosionOutwardsWaveHeightLocationsPropertiesTest.cs (.../GrassCoverErosionOutwardsWaveHeightLocationsPropertiesTest.cs) (revision 04780cbac72d279ad9173eb06075caa1cc5143cf) +++ Ringtoets/GrassCoverErosionOutwards/test/Ringtoets.GrassCoverErosionOutwards.Forms.Test/PropertyClasses/GrassCoverErosionOutwardsWaveHeightLocationsPropertiesTest.cs (.../GrassCoverErosionOutwardsWaveHeightLocationsPropertiesTest.cs) (revision 38921822ee2e4dd7a4379d545bfbe3d4de116e87) @@ -91,7 +91,7 @@ var location = new TestHydraulicBoundaryLocation(); var calculation = new HydraulicBoundaryLocationCalculation { - Output = new TestHydraulicBoundaryLocationOutput(1.5) + Output = new TestHydraulicBoundaryLocationOutput(1.5, CalculationConvergence.CalculatedConverged) }; var hydraulicBoundaryDatabase = new ObservableList { @@ -111,9 +111,8 @@ Assert.AreEqual(location.Id, locationProperties.Id); Assert.AreEqual(location.Location, locationProperties.Location); - RoundedDouble waveHeight = location.WaveHeightCalculation1.Output.Result; + RoundedDouble waveHeight = calculation.Output.Result; Assert.AreEqual(waveHeight, locationProperties.WaveHeight, waveHeight.GetAccuracy()); - Assert.AreEqual("Ja", locationProperties.Convergence); } }