Index: Ringtoets/Common/test/Ringtoets.Common.Data.TestUtil.Test/TestHydraulicBoundaryLocationTest.cs =================================================================== diff -u -r84e889aa70e2cd0fc1972628144470cf2c223e3d -r2ab89f4256cd77d3386c27ca1cbd49a16f4abba2 --- Ringtoets/Common/test/Ringtoets.Common.Data.TestUtil.Test/TestHydraulicBoundaryLocationTest.cs (.../TestHydraulicBoundaryLocationTest.cs) (revision 84e889aa70e2cd0fc1972628144470cf2c223e3d) +++ Ringtoets/Common/test/Ringtoets.Common.Data.TestUtil.Test/TestHydraulicBoundaryLocationTest.cs (.../TestHydraulicBoundaryLocationTest.cs) (revision 2ab89f4256cd77d3386c27ca1cbd49a16f4abba2) @@ -76,56 +76,6 @@ } [Test] - public void CreateDesignWaterLevelCalculated_DesignWaterLevel_ExpectedValues() - { - // Setup - const double designWaterLevelValue = 4.5; - - // Call - HydraulicBoundaryLocation testLocation = TestHydraulicBoundaryLocation.CreateDesignWaterLevelCalculated(designWaterLevelValue); - - // Assert - Assert.IsInstanceOf(testLocation); - Assert.AreEqual(0, testLocation.Id); - Assert.IsEmpty(testLocation.Name); - Assert.AreEqual(new Point2D(0, 0), testLocation.Location); - - AssertCalculationHasOutput(designWaterLevelValue, testLocation.DesignWaterLevelCalculation1); - Assert.IsNull(testLocation.DesignWaterLevelCalculation2.Output); - Assert.IsNull(testLocation.DesignWaterLevelCalculation3.Output); - Assert.IsNull(testLocation.DesignWaterLevelCalculation4.Output); - Assert.IsNull(testLocation.WaveHeightCalculation1.Output); - Assert.IsNull(testLocation.WaveHeightCalculation2.Output); - Assert.IsNull(testLocation.WaveHeightCalculation3.Output); - Assert.IsNull(testLocation.WaveHeightCalculation4.Output); - } - - [Test] - public void CreateWaveHeightCalculated_WaveHeight_ExpectedValues() - { - // Setup - const double waveHeightValue = 5.5; - - // Call - HydraulicBoundaryLocation testLocation = TestHydraulicBoundaryLocation.CreateWaveHeightCalculated(waveHeightValue); - - // Assert - Assert.IsInstanceOf(testLocation); - Assert.AreEqual(0, testLocation.Id); - Assert.IsEmpty(testLocation.Name); - Assert.AreEqual(new Point2D(0, 0), testLocation.Location); - - Assert.IsNull(testLocation.DesignWaterLevelCalculation1.Output); - Assert.IsNull(testLocation.DesignWaterLevelCalculation2.Output); - Assert.IsNull(testLocation.DesignWaterLevelCalculation3.Output); - Assert.IsNull(testLocation.DesignWaterLevelCalculation4.Output); - AssertCalculationHasOutput(waveHeightValue, testLocation.WaveHeightCalculation1); - Assert.IsNull(testLocation.WaveHeightCalculation2.Output); - Assert.IsNull(testLocation.WaveHeightCalculation3.Output); - Assert.IsNull(testLocation.WaveHeightCalculation4.Output); - } - - [Test] public void CreateFullyCalculated_DesignWaterLevelAndWaveHeight_ExpectedValues() { // Call