Index: Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Data.Test/GrassCoverErosionInwardsCalculationTest.cs =================================================================== diff -u -r93c2b9abd9cd5ca08894b32e052dca16ef9e7b9f -r8fe455e465cc4667356323c2a7eecb556fba4b4e --- Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Data.Test/GrassCoverErosionInwardsCalculationTest.cs (.../GrassCoverErosionInwardsCalculationTest.cs) (revision 93c2b9abd9cd5ca08894b32e052dca16ef9e7b9f) +++ Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Data.Test/GrassCoverErosionInwardsCalculationTest.cs (.../GrassCoverErosionInwardsCalculationTest.cs) (revision 8fe455e465cc4667356323c2a7eecb556fba4b4e) @@ -331,6 +331,56 @@ overtoppingRateOutputWithoutGeneralResult) }, true) .SetName("OvertoppingRateOutputWithMissingGeneralResult"); + + yield return new TestCaseData(new GrassCoverErosionInwardsCalculation + { + InputParameters = + { + DikeHeightCalculationType = DikeHeightCalculationType.CalculateByAssessmentSectionNorm + }, + Output = new GrassCoverErosionInwardsOutput(overtoppingOutputWithoutGeneralResult, + null, + null) + }, true) + .SetName("DikeHeightOutputMissingScenario1"); + + yield return new TestCaseData(new GrassCoverErosionInwardsCalculation + { + InputParameters = + { + DikeHeightCalculationType = DikeHeightCalculationType.CalculateByAssessmentSectionNorm, + ShouldDikeHeightIllustrationPointsBeCalculated = true + }, + Output = new GrassCoverErosionInwardsOutput(overtoppingOutputWithoutGeneralResult, + null, + null) + }, true) + .SetName("DikeHeightOutputMissingScenario2"); + + yield return new TestCaseData(new GrassCoverErosionInwardsCalculation + { + InputParameters = + { + OvertoppingRateCalculationType = OvertoppingRateCalculationType.CalculateByAssessmentSectionNorm + }, + Output = new GrassCoverErosionInwardsOutput(overtoppingOutputWithoutGeneralResult, + null, + null) + }, true) + .SetName("OvertoppingRateOutputMissingScenario1"); + + yield return new TestCaseData(new GrassCoverErosionInwardsCalculation + { + InputParameters = + { + OvertoppingRateCalculationType = OvertoppingRateCalculationType.CalculateByAssessmentSectionNorm, + ShouldOvertoppingRateIllustrationPointsBeCalculated = true + }, + Output = new GrassCoverErosionInwardsOutput(overtoppingOutputWithoutGeneralResult, + null, + null) + }, true) + .SetName("OvertoppingRateOutputMissingScenario2"); } } } \ No newline at end of file