Index: Ringtoets/WaveImpactAsphaltCover/test/Ringtoets.WaveImpactAsphaltCover.Integration.Test/WaveImpactAsphaltCoverWaveConditionsCalculationActivityIntegrationTest.cs =================================================================== diff -u -rcc39748cdc122bfcc9bfb27e6e1ac9b7c558b5bf -ra14d1309ecf82ff5b0385a2f6e3b2c4a216a4184 --- Ringtoets/WaveImpactAsphaltCover/test/Ringtoets.WaveImpactAsphaltCover.Integration.Test/WaveImpactAsphaltCoverWaveConditionsCalculationActivityIntegrationTest.cs (.../WaveImpactAsphaltCoverWaveConditionsCalculationActivityIntegrationTest.cs) (revision cc39748cdc122bfcc9bfb27e6e1ac9b7c558b5bf) +++ Ringtoets/WaveImpactAsphaltCover/test/Ringtoets.WaveImpactAsphaltCover.Integration.Test/WaveImpactAsphaltCoverWaveConditionsCalculationActivityIntegrationTest.cs (.../WaveImpactAsphaltCoverWaveConditionsCalculationActivityIntegrationTest.cs) (revision a14d1309ecf82ff5b0385a2f6e3b2c4a216a4184) @@ -287,9 +287,9 @@ } [Test] - [TestCase(double.NegativeInfinity)] - [TestCase(double.PositiveInfinity)] - [TestCase(double.NaN)] + [TestCase(double.NegativeInfinity, TestName = "Run_CalculationWithForeshoreNoBWInvalidBWHeight_PerformAndLog(negativeInfinity)")] + [TestCase(double.PositiveInfinity, TestName = "Run_CalculationWithForeshoreNoBWInvalidBWHeight_PerformAndLog(positiveInfinity)")] + [TestCase(double.NaN, TestName = "Run_CalculationWithForeshoreNoBWInvalidBWrHeight_PerformAndLog(NaN)")] public void Run_CalculationWithForeshoreAndDoesNotUseBreakWaterAndHasInvalidBreakWaterHeight_PerformCalculationAndLogStartEnd(double breakWaterHeight) { // Setup @@ -350,9 +350,9 @@ } [Test] - [TestCase(double.NegativeInfinity)] - [TestCase(double.PositiveInfinity)] - [TestCase(double.NaN)] + [TestCase(double.NegativeInfinity, TestName = "Run_CalculationWithForeshoreBreakWaterInvalidBreakWaterHeight_LogNotPerform(negativeInfinity)")] + [TestCase(double.PositiveInfinity, TestName = "Run_CalculationWithForeshoreBreakWaterInvalidBreakWaterHeight_LogNotPerform(positiveInfinity)")] + [TestCase(double.NaN, TestName = "Run_CalculationWithForeshoreBreakWaterInvalidBreakWaterHeight_LogNotPerform(NaN)")] public void Run_CalculationWithForeshoreAndUsesBreakWaterAndHasInvalidBreakWaterHeight_DoesNotPerformCalculationAndLogStartEnd(double breakWaterHeight) { // Setup @@ -404,7 +404,7 @@ [TestCase(CalculationType.NoForeshore)] [TestCase(CalculationType.ForeshoreWithoutBreakWater)] [TestCase(CalculationType.ForeshoreWithValidBreakWater)] - public void Run_CalculationWithValidInputConditionsValidateForeshoreProfile_PerformCalculationLogCalculationStartAndErrorAndEnd(CalculationType calculationType) + public void Run_CalculationValidateForeshoreProfile_PerformLogStartErrorEnd(CalculationType calculationType) { // Setup var assessmentSection = new AssessmentSection(AssessmentSectionComposition.Dike);