Index: Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Integration.Test/GrassCoverErosionInwardsCalculationServiceIntegrationTest.cs =================================================================== diff -u -r1e8709c1680d46658119abf78016bc5d38886cc8 -r3a525b70c20312822d099cd69e89cb7f8bfd22ce --- Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Integration.Test/GrassCoverErosionInwardsCalculationServiceIntegrationTest.cs (.../GrassCoverErosionInwardsCalculationServiceIntegrationTest.cs) (revision 1e8709c1680d46658119abf78016bc5d38886cc8) +++ Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Integration.Test/GrassCoverErosionInwardsCalculationServiceIntegrationTest.cs (.../GrassCoverErosionInwardsCalculationServiceIntegrationTest.cs) (revision 3a525b70c20312822d099cd69e89cb7f8bfd22ce) @@ -154,6 +154,7 @@ [Test] [TestCase(double.NaN)] [TestCase(double.NegativeInfinity)] + [TestCase(double.PositiveInfinity)] public void Validate_ValidInputAndValidateBreakWaterHeight_ReturnsFalse(double breakWaterHeight) { // Setup @@ -186,6 +187,7 @@ [TestCase(true, 10.0)] [TestCase(false, 10.0)] [TestCase(false, double.NaN)] + [TestCase(false, double.PositiveInfinity)] [TestCase(false, double.NegativeInfinity)] public void Validate_ValidInputAndValidateBreakWaterHeight_ReturnsTrue(bool useBreakWater, double breakWaterHeight) {