Index: Ringtoets/Common/test/Ringtoets.Common.Data.TestUtil/TestHydraulicBoundaryLocation.cs
===================================================================
diff -u -rb3b6c13cf736c134476b3db34281332d01ca86b1 -r8bb6e849266ec28412ebfe23beccd7235c4db9bf
--- Ringtoets/Common/test/Ringtoets.Common.Data.TestUtil/TestHydraulicBoundaryLocation.cs (.../TestHydraulicBoundaryLocation.cs) (revision b3b6c13cf736c134476b3db34281332d01ca86b1)
+++ Ringtoets/Common/test/Ringtoets.Common.Data.TestUtil/TestHydraulicBoundaryLocation.cs (.../TestHydraulicBoundaryLocation.cs) (revision 8bb6e849266ec28412ebfe23beccd7235c4db9bf)
@@ -42,8 +42,8 @@
public TestHydraulicBoundaryLocation() : this(null, null) {}
///
- /// Creates a new instance of with
- /// and set.
+ /// Creates a new instance of with
+ /// set.
///
/// The design water level result to set in the output.
/// The wave height result to set in the output.
@@ -52,18 +52,21 @@
{
if (designWaterLevel.HasValue)
{
- DesignWaterLevelOutput = new HydraulicBoundaryLocationOutput(designWaterLevel.Value, 0, 0, 0, 0, CalculationConvergence.CalculatedConverged);
+ DesignWaterLevelCalculation.Output = new HydraulicBoundaryLocationOutput(
+ designWaterLevel.Value, 0, 0, 0, 0, CalculationConvergence.CalculatedConverged);
}
if (waveHeight.HasValue)
{
- WaveHeightOutput = new HydraulicBoundaryLocationOutput(waveHeight.Value, 0, 0, 0, 0, CalculationConvergence.CalculatedConverged);
+ WaveHeightCalculation.Output = new HydraulicBoundaryLocationOutput(
+ waveHeight.Value, 0, 0, 0, 0, CalculationConvergence.CalculatedConverged);
}
}
///
- /// Creates a new instance of
- /// with
- /// and set.
+ /// Creates a new instance of with
+ /// set for
+ ///
+ /// and .
///
/// A new .
public static TestHydraulicBoundaryLocation CreateFullyCalculated()
@@ -73,7 +76,8 @@
///
/// Creates a new instance of with
- /// set.
+ /// set for
+ ///
///
/// The design water level result to set in the output.
/// A new .
@@ -84,9 +88,10 @@
///
/// Creates a new instance of with
- /// set.
+ /// set for
+ ///
///
- /// The waveheight result to set in the output.
+ /// The wave height result to set in the output.
/// A new .
public static TestHydraulicBoundaryLocation CreateWaveHeightCalculated(double waveheight)
{