Index: Ringtoets/ClosingStructures/test/Ringtoets.ClosingStructures.Data.Test/GeneralClosingStructuresInputTest.cs =================================================================== diff -u -rfdac52e3f5d96b98aebf00e516ea9cf77b449da3 -r91e808c7d6bb3884977b8d4e74b9c6cc28394329 --- Ringtoets/ClosingStructures/test/Ringtoets.ClosingStructures.Data.Test/GeneralClosingStructuresInputTest.cs (.../GeneralClosingStructuresInputTest.cs) (revision fdac52e3f5d96b98aebf00e516ea9cf77b449da3) +++ Ringtoets/ClosingStructures/test/Ringtoets.ClosingStructures.Data.Test/GeneralClosingStructuresInputTest.cs (.../GeneralClosingStructuresInputTest.cs) (revision 91e808c7d6bb3884977b8d4e74b9c6cc28394329) @@ -33,7 +33,7 @@ public void Constructor_ExpectedValues() { // Setup - var modelFactorOverToppingFlow = new LogNormalDistribution(3) + var modelFactorOvertoppingFlow = new LogNormalDistribution(3) { Mean = (RoundedDouble) 0.09, StandardDeviation = (RoundedDouble) 0.06 @@ -66,7 +66,7 @@ Assert.AreEqual(2, inputParameters.GravitationalAcceleration.NumberOfDecimalPlaces); AssertEqualValue(9.81, inputParameters.GravitationalAcceleration); - DistributionAssert.AreEqual(modelFactorOverToppingFlow, inputParameters.ModelFactorOvertoppingFlow); + DistributionAssert.AreEqual(modelFactorOvertoppingFlow, inputParameters.ModelFactorOvertoppingFlow); DistributionAssert.AreEqual(modelFactorSubCriticalFlow, inputParameters.ModelFactorSubCriticalFlow); DistributionAssert.AreEqual(modelFactorStorageVolume, inputParameters.ModelFactorStorageVolume); Index: Ringtoets/Common/test/Ringtoets.Common.Data.TestUtil.Test/DistributionAssertTest.cs =================================================================== diff -u -rde2c2120ae90c07a5df0bd4c347c5421b19dd732 -r91e808c7d6bb3884977b8d4e74b9c6cc28394329 --- Ringtoets/Common/test/Ringtoets.Common.Data.TestUtil.Test/DistributionAssertTest.cs (.../DistributionAssertTest.cs) (revision de2c2120ae90c07a5df0bd4c347c5421b19dd732) +++ Ringtoets/Common/test/Ringtoets.Common.Data.TestUtil.Test/DistributionAssertTest.cs (.../DistributionAssertTest.cs) (revision 91e808c7d6bb3884977b8d4e74b9c6cc28394329) @@ -30,7 +30,7 @@ public class DistributionAssertTest { [Test] - [TestCaseSource("IdenticalStandardDeviationDistributionProperties")] + [TestCaseSource("IdenticalDistributionProperties")] public void AreDistributionPropertiesEqual_IdenticalStandardDeviationDistributionProperties_DoesNotThrowException(IDistribution distributionOne, IDistribution distributionTwo) { @@ -42,7 +42,7 @@ } [Test] - [TestCaseSource("IdenticalVariationDistributionProperties")] + [TestCaseSource("IdenticalVariationCoefficientDistributionProperties")] public void AreDistributionPropertiesEqual_IdenticalVariationDistributionProperties_DoesNotThrowException(IVariationCoefficientDistribution distributionOne, IVariationCoefficientDistribution distributionTwo) { @@ -54,7 +54,7 @@ } [Test] - [TestCaseSource("DifferentStandardDeviationDistributionProperties")] + [TestCaseSource("DifferentDistributionProperties")] public void AreDistributionPropertiesEqual_DifferentStandardDeviationDistributionProperties_ThrowsAssertionException(IDistribution distributionOne, IDistribution distributionTwo) { @@ -66,7 +66,7 @@ } [Test] - [TestCaseSource("DifferentVariationDistributionProperties")] + [TestCaseSource("DifferentVariationCoefficientDistributionProperties")] public void AreDistributionPropertiesEqual_DifferentVariationDistributionProperties_ThrowsAssertionException(IVariationCoefficientDistribution distributionOne, IVariationCoefficientDistribution distributionTwo) { @@ -79,7 +79,7 @@ #region Test data - private static IEnumerable IdenticalStandardDeviationDistributionProperties + private static IEnumerable IdenticalDistributionProperties { get { @@ -108,7 +108,7 @@ } } - private static IEnumerable IdenticalVariationDistributionProperties + private static IEnumerable IdenticalVariationCoefficientDistributionProperties { get { @@ -137,7 +137,7 @@ } } - private static IEnumerable DifferentStandardDeviationDistributionProperties + private static IEnumerable DifferentDistributionProperties { get { @@ -221,7 +221,7 @@ } } - private static IEnumerable DifferentVariationDistributionProperties + private static IEnumerable DifferentVariationCoefficientDistributionProperties { get { Index: Ringtoets/Common/test/Ringtoets.Common.Data.TestUtil/DistributionAssert.cs =================================================================== diff -u -r2ce297977651104992063303f71410e6dad9b834 -r91e808c7d6bb3884977b8d4e74b9c6cc28394329 --- Ringtoets/Common/test/Ringtoets.Common.Data.TestUtil/DistributionAssert.cs (.../DistributionAssert.cs) (revision 2ce297977651104992063303f71410e6dad9b834) +++ Ringtoets/Common/test/Ringtoets.Common.Data.TestUtil/DistributionAssert.cs (.../DistributionAssert.cs) (revision 91e808c7d6bb3884977b8d4e74b9c6cc28394329) @@ -26,7 +26,7 @@ namespace Ringtoets.Common.Data.TestUtil { /// - /// Class to assert the properties of the probability distributions. + /// Class to assert the properties of the probabilistic distributions. /// public static class DistributionAssert { @@ -41,7 +41,7 @@ /// /// The probability distribution types. /// The values for the mean and/or the standard deviation. - /// The precision for the mean and or the standard deviation. + /// The precision for the mean and/or the standard deviation. /// public static void AreEqual(IDistribution expectedDistribution, IDistribution actualDistribution) { @@ -62,7 +62,7 @@ /// /// The probability distribution types. /// The values for the mean and/or the variation. - /// The precision for the mean and or the variation. + /// The precision for the mean and/or the variation. /// public static void AreEqual(IVariationCoefficientDistribution expectedDistribution, IVariationCoefficientDistribution actualDistribution) { Index: Ringtoets/HydraRing/src/Ringtoets.HydraRing.Calculation/Data/Input/Structures/StructuresStabilityPointCalculationInput.cs =================================================================== diff -u -r5e9769061c2802f1182ed502e2a32581cfb68196 -r91e808c7d6bb3884977b8d4e74b9c6cc28394329 --- Ringtoets/HydraRing/src/Ringtoets.HydraRing.Calculation/Data/Input/Structures/StructuresStabilityPointCalculationInput.cs (.../StructuresStabilityPointCalculationInput.cs) (revision 5e9769061c2802f1182ed502e2a32581cfb68196) +++ Ringtoets/HydraRing/src/Ringtoets.HydraRing.Calculation/Data/Input/Structures/StructuresStabilityPointCalculationInput.cs (.../StructuresStabilityPointCalculationInput.cs) (revision 91e808c7d6bb3884977b8d4e74b9c6cc28394329) @@ -131,8 +131,8 @@ /// The failure probability structure with erosion. /// The mean of the storm duration. /// The variation of the storm duration. - /// The mean of the berm width. - /// The standard deviation of the berm width. + /// The mean of the bank width. + /// The standard deviation of the bank width. /// The evaluation level. /// The mean of the model factor load effect. /// The standard deviation of the model factor load effect. Index: Ringtoets/HydraRing/src/Ringtoets.HydraRing.Calculation/Data/Input/Structures/StructuresStabilityPointFloodedCulvertLinearCalculationInput.cs =================================================================== diff -u -r5e9769061c2802f1182ed502e2a32581cfb68196 -r91e808c7d6bb3884977b8d4e74b9c6cc28394329 --- Ringtoets/HydraRing/src/Ringtoets.HydraRing.Calculation/Data/Input/Structures/StructuresStabilityPointFloodedCulvertLinearCalculationInput.cs (.../StructuresStabilityPointFloodedCulvertLinearCalculationInput.cs) (revision 5e9769061c2802f1182ed502e2a32581cfb68196) +++ Ringtoets/HydraRing/src/Ringtoets.HydraRing.Calculation/Data/Input/Structures/StructuresStabilityPointFloodedCulvertLinearCalculationInput.cs (.../StructuresStabilityPointFloodedCulvertLinearCalculationInput.cs) (revision 91e808c7d6bb3884977b8d4e74b9c6cc28394329) @@ -86,8 +86,8 @@ /// The failure probability structure with erosion. /// The mean of the storm duration. /// The variation of the storm duration. - /// The mean of the berm width. - /// The standard deviation of the berm width. + /// The mean of the bank width. + /// The standard deviation of the bank width. /// The evaluation level. /// The mean of the model factor load effect. /// The standard deviation of the model factor load effect. Index: Ringtoets/HydraRing/src/Ringtoets.HydraRing.Calculation/Data/Input/Structures/StructuresStabilityPointFloodedCulvertQuadraticCalculationInput.cs =================================================================== diff -u -r5e9769061c2802f1182ed502e2a32581cfb68196 -r91e808c7d6bb3884977b8d4e74b9c6cc28394329 --- Ringtoets/HydraRing/src/Ringtoets.HydraRing.Calculation/Data/Input/Structures/StructuresStabilityPointFloodedCulvertQuadraticCalculationInput.cs (.../StructuresStabilityPointFloodedCulvertQuadraticCalculationInput.cs) (revision 5e9769061c2802f1182ed502e2a32581cfb68196) +++ Ringtoets/HydraRing/src/Ringtoets.HydraRing.Calculation/Data/Input/Structures/StructuresStabilityPointFloodedCulvertQuadraticCalculationInput.cs (.../StructuresStabilityPointFloodedCulvertQuadraticCalculationInput.cs) (revision 91e808c7d6bb3884977b8d4e74b9c6cc28394329) @@ -86,8 +86,8 @@ /// The failure probability structure with erosion. /// The mean of the storm duration. /// The variation of the storm duration. - /// The mean of the berm width. - /// The standard deviation of the berm width. + /// The mean of the bank width. + /// The standard deviation of the bank width. /// The evaluation level. /// The mean of the model factor load effect. /// The standard deviation of the model factor load effect. Index: Ringtoets/HydraRing/src/Ringtoets.HydraRing.Calculation/Data/Input/Structures/StructuresStabilityPointLowSillLinearCalculationInput.cs =================================================================== diff -u -r5e9769061c2802f1182ed502e2a32581cfb68196 -r91e808c7d6bb3884977b8d4e74b9c6cc28394329 --- Ringtoets/HydraRing/src/Ringtoets.HydraRing.Calculation/Data/Input/Structures/StructuresStabilityPointLowSillLinearCalculationInput.cs (.../StructuresStabilityPointLowSillLinearCalculationInput.cs) (revision 5e9769061c2802f1182ed502e2a32581cfb68196) +++ Ringtoets/HydraRing/src/Ringtoets.HydraRing.Calculation/Data/Input/Structures/StructuresStabilityPointLowSillLinearCalculationInput.cs (.../StructuresStabilityPointLowSillLinearCalculationInput.cs) (revision 91e808c7d6bb3884977b8d4e74b9c6cc28394329) @@ -86,8 +86,8 @@ /// The failure probability structure with erosion. /// The mean of the storm duration. /// The variation of the storm duration. - /// The mean of the berm width. - /// The standard deviation of the berm width. + /// The mean of the bank width. + /// The standard deviation of the bank width. /// The evaluation level. /// The mean of the model factor load effect. /// The standard deviation of the model factor load effect. Index: Ringtoets/HydraRing/src/Ringtoets.HydraRing.Calculation/Data/Input/Structures/StructuresStabilityPointLowSillQuadraticCalculationInput.cs =================================================================== diff -u -r5e9769061c2802f1182ed502e2a32581cfb68196 -r91e808c7d6bb3884977b8d4e74b9c6cc28394329 --- Ringtoets/HydraRing/src/Ringtoets.HydraRing.Calculation/Data/Input/Structures/StructuresStabilityPointLowSillQuadraticCalculationInput.cs (.../StructuresStabilityPointLowSillQuadraticCalculationInput.cs) (revision 5e9769061c2802f1182ed502e2a32581cfb68196) +++ Ringtoets/HydraRing/src/Ringtoets.HydraRing.Calculation/Data/Input/Structures/StructuresStabilityPointLowSillQuadraticCalculationInput.cs (.../StructuresStabilityPointLowSillQuadraticCalculationInput.cs) (revision 91e808c7d6bb3884977b8d4e74b9c6cc28394329) @@ -86,8 +86,8 @@ /// The failure probability structure with erosion. /// The mean of the storm duration. /// The variation of the storm duration. - /// The mean of the berm width. - /// The standard deviation of the berm width. + /// The mean of the bank width. + /// The standard deviation of the bank width. /// The evaluation level. /// The mean of the model factor load effect. /// The standard deviation of the model factor load effect.