Index: Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Data.Test/GrassCoverErosionInwardsCalculationTest.cs =================================================================== diff -u -r0e8590d1ba6edc87a2ac73240662bfcf45f20914 -ra64de6ae2156a0977bec63ec48825d185dba2801 --- Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Data.Test/GrassCoverErosionInwardsCalculationTest.cs (.../GrassCoverErosionInwardsCalculationTest.cs) (revision 0e8590d1ba6edc87a2ac73240662bfcf45f20914) +++ Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Data.Test/GrassCoverErosionInwardsCalculationTest.cs (.../GrassCoverErosionInwardsCalculationTest.cs) (revision a64de6ae2156a0977bec63ec48825d185dba2801) @@ -19,7 +19,6 @@ // Stichting Deltares and remain full property of Stichting Deltares at all times. // All rights reserved. -using System.Linq; using Core.Common.Base; using NUnit.Framework; using Ringtoets.Common.Data.Calculation; @@ -45,7 +44,7 @@ Assert.IsFalse(calculation.HasOutput); Assert.IsNull(calculation.Comments); Assert.IsNull(calculation.Output); - AssertDemoInput(calculation.InputParameters); + Assert.IsNull(calculation.InputParameters.DikeProfile); } [Test] @@ -171,28 +170,6 @@ Assert.AreSame(output, calculationOutput); } - private void AssertDemoInput(GrassCoverErosionInwardsInput inputParameters) - { - // BreakWater - Assert.IsNotNull(inputParameters.BreakWater); - Assert.AreEqual(10.0, inputParameters.BreakWater.Height.Value); - Assert.AreEqual(BreakWaterType.Dam, inputParameters.BreakWater.Type); - Assert.IsTrue(inputParameters.UseBreakWater); - - // Orientation - Assert.AreEqual(2, inputParameters.Orientation.NumberOfDecimalPlaces); - Assert.AreEqual(5.5, inputParameters.Orientation.Value); - - // Dike and Foreshore - Assert.IsTrue(inputParameters.ForeshoreGeometry.Any()); - Assert.IsTrue(inputParameters.DikeGeometry.Any()); - Assert.IsTrue(inputParameters.UseForeshore); - - // Dike height - Assert.AreEqual(2, inputParameters.DikeHeight.NumberOfDecimalPlaces); - Assert.AreEqual(10, inputParameters.DikeHeight.Value); - } - private class TestGrassCoverErosionInwardsOutput : ProbabilityAssessmentOutput { public TestGrassCoverErosionInwardsOutput() : base(0, 0, 0, 0, 0) {}