Index: Ringtoets/Common/test/Ringtoets.Common.Data.TestUtil.Test/DistributionAssertTest.cs =================================================================== diff -u -r71eba24cc0be4f2cfe3cca917430cd23510eaa4f -racf86909628278e511e07a2096f71664e6ef9ee8 --- Ringtoets/Common/test/Ringtoets.Common.Data.TestUtil.Test/DistributionAssertTest.cs (.../DistributionAssertTest.cs) (revision 71eba24cc0be4f2cfe3cca917430cd23510eaa4f) +++ Ringtoets/Common/test/Ringtoets.Common.Data.TestUtil.Test/DistributionAssertTest.cs (.../DistributionAssertTest.cs) (revision acf86909628278e511e07a2096f71664e6ef9ee8) @@ -164,13 +164,15 @@ new LogNormalDistribution(2) { Mean = (RoundedDouble) 1, - StandardDeviation = (RoundedDouble) 2 + StandardDeviation = (RoundedDouble) 2, + Shift = (RoundedDouble) 0.5 }, new LogNormalDistribution(2) { Mean = (RoundedDouble) 1, - StandardDeviation = (RoundedDouble) 2 - }).SetName("IdenticalLogNormalDistribution"); + StandardDeviation = (RoundedDouble) 2, + Shift = (RoundedDouble) 0.5 + }).SetName("IdenticalLogNormalDistributionWithShift"); } } @@ -323,7 +325,7 @@ { Mean = (RoundedDouble) 1, StandardDeviation = (RoundedDouble) 2 - }).SetName("DifferentRoundingLogNormalDistribution"); + }).SetName("LogNormalDistributionDifferentRoundinglDistribution"); yield return new TestCaseData( new LogNormalDistribution(2) { @@ -334,7 +336,7 @@ { Mean = (RoundedDouble) 2, StandardDeviation = (RoundedDouble) 2 - }).SetName("DifferentMeanLogNormalDistribution"); + }).SetName("LogNormalDistributionDifferentMean"); yield return new TestCaseData( new LogNormalDistribution(2) { @@ -345,7 +347,7 @@ { Mean = (RoundedDouble) 1, StandardDeviation = (RoundedDouble) 2 - }).SetName("DifferentStandardDeviationLogNormalDistribution"); + }).SetName("LogNormalDistributionDifferentStandardDeviation"); yield return new TestCaseData( new LogNormalDistribution(2) { @@ -358,7 +360,7 @@ Mean = (RoundedDouble) 4, StandardDeviation = (RoundedDouble) 2, Shift = (RoundedDouble) 3 - }).SetName("DifferentShiftLogNormalDistribution"); + }).SetName("LogNormalDistributionDifferentShift"); } }