Index: Ringtoets/Common/test/Ringtoets.Common.Data.TestUtil/DistributionAssert.cs =================================================================== diff -u -rcf792220e910d93a764ea77cf57cff45d267fdde -rb7563238aa805cb6207e948a97f6fcc9e52c92b2 --- Ringtoets/Common/test/Ringtoets.Common.Data.TestUtil/DistributionAssert.cs (.../DistributionAssert.cs) (revision cf792220e910d93a764ea77cf57cff45d267fdde) +++ Ringtoets/Common/test/Ringtoets.Common.Data.TestUtil/DistributionAssert.cs (.../DistributionAssert.cs) (revision b7563238aa805cb6207e948a97f6fcc9e52c92b2) @@ -52,6 +52,26 @@ } /// + /// Determines if the properties of the actual are the same + /// as the expected . + /// + /// The expected . + /// The actual . + /// Thrown when the following differences are found between + /// the and : + /// + /// The probabilistic distribution types. + /// The values for the mean, the standard deviation and/or the shift. + /// The precision for the mean, the standard deviation and/or the shift. + /// + public static void AreEqual(LogNormalDistribution expectedDistribution, LogNormalDistribution actualDistribution) + { + AreEqual((IDistribution)expectedDistribution, actualDistribution); + + AreEqualValue(expectedDistribution.Shift, actualDistribution.Shift); + } + + /// /// Determines if the properties of the actual are the same /// as the expected . ///