Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/SoilProfile/DistributionHelperTest.cs =================================================================== diff -u -r117a54dfd9b5972086a1f3386923edda2e7a334b -r16655233702d8d9b12e8618a6b40acabe27aa1a7 --- Ringtoets/Common/test/Ringtoets.Common.IO.Test/SoilProfile/DistributionHelperTest.cs (.../DistributionHelperTest.cs) (revision 117a54dfd9b5972086a1f3386923edda2e7a334b) +++ Ringtoets/Common/test/Ringtoets.Common.IO.Test/SoilProfile/DistributionHelperTest.cs (.../DistributionHelperTest.cs) (revision 16655233702d8d9b12e8618a6b40acabe27aa1a7) @@ -48,7 +48,7 @@ } [Test] - public void ValidateLogNormalDistribution_InvalidDistributionType_ThrowsInvalidDistributionSettingException() + public void ValidateLogNormalDistribution_InvalidDistributionType_ThrowsDistributionValidationException() { // Setup const long distributionType = -1; @@ -63,12 +63,12 @@ parameterName); // Assert - var exception = Assert.Throws(call); + var exception = Assert.Throws(call); Assert.AreEqual($"Parameter '{parameterName}' moet lognormaal verdeeld zijn.", exception.Message); } [Test] - public void ValidateLogNormalDistribution_ShiftNonZero_ThrowsInvalidDistributionSettingException() + public void ValidateLogNormalDistribution_ShiftNonZero_ThrowsDistributionValidationException() { // Setup const long distributionType = SoilLayerConstants.LogNormalDistributionValue; @@ -83,7 +83,7 @@ parameterName); // Assert - var exception = Assert.Throws(call); + var exception = Assert.Throws(call); Assert.AreEqual($"Parameter '{parameterName}' moet lognormaal verdeeld zijn met een verschuiving gelijk aan 0.", exception.Message); } @@ -137,7 +137,7 @@ } [Test] - public void ValidateShiftedLogNormalDistribution_InvalidDistributionType_ThrowsInvalidDistributionSettingException() + public void ValidateShiftedLogNormalDistribution_InvalidDistributionType_ThrowsDistributionValidationException() { // Setup const long invalidDistributionType = -1; @@ -148,7 +148,7 @@ parameterName); // Assert - var exception = Assert.Throws(call); + var exception = Assert.Throws(call); Assert.AreEqual($"Parameter '{parameterName}' moet verschoven lognormaal verdeeld zijn.", exception.Message); }