Index: Ringtoets/Common/src/Ringtoets.Common.Data/Properties/Resources.Designer.cs =================================================================== diff -u -raf62e374c37713df98c2866ec4bfa64206b5b2b3 -r4a43331dbd65968b57983f4a40099d086553b4a7 --- Ringtoets/Common/src/Ringtoets.Common.Data/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision af62e374c37713df98c2866ec4bfa64206b5b2b3) +++ Ringtoets/Common/src/Ringtoets.Common.Data/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision 4a43331dbd65968b57983f4a40099d086553b4a7) @@ -22,7 +22,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:4.0.30319.18444 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. @@ -182,7 +182,7 @@ } /// - /// Looks up a localized string similar to Variatiecoëfficiënt (CV) moet groter of gelijk zijn aan 0.. + /// Looks up a localized string similar to Variatiecoëfficiënt (CV) moet groter zijn dan of gelijk zijn aan 0.. /// public static string CoefficientOfVariation_Should_be_greater_or_equal_to_zero { get { @@ -409,7 +409,7 @@ } /// - /// Looks up a localized string similar to Standaard afwijking (σ) moet groter zijn dan of gelijk aan 0.. + /// Looks up a localized string similar to Standaard afwijking (σ) moet groter zijn dan of gelijk zijn aan 0.. /// public static string StandardDeviation_Should_be_greater_or_equal_zero { get { Index: Ringtoets/Common/src/Ringtoets.Common.Data/Properties/Resources.resx =================================================================== diff -u -raf62e374c37713df98c2866ec4bfa64206b5b2b3 -r4a43331dbd65968b57983f4a40099d086553b4a7 --- Ringtoets/Common/src/Ringtoets.Common.Data/Properties/Resources.resx (.../Resources.resx) (revision af62e374c37713df98c2866ec4bfa64206b5b2b3) +++ Ringtoets/Common/src/Ringtoets.Common.Data/Properties/Resources.resx (.../Resources.resx) (revision 4a43331dbd65968b57983f4a40099d086553b4a7) @@ -157,7 +157,7 @@ Gemiddelde moet groter zijn dan 0. - Standaard afwijking (σ) moet groter zijn dan of gelijk aan 0. + Standaard afwijking (σ) moet groter zijn dan of gelijk zijn aan 0. Nieuwe map @@ -220,7 +220,7 @@ Nieuwe berekening - Variatiecoëfficiënt (CV) moet groter of gelijk zijn aan 0. + Variatiecoëfficiënt (CV) moet groter zijn dan of gelijk zijn aan 0. De waarde voor de oriëntatie moet in het bereik [0, 360] liggen. Index: Ringtoets/Common/test/Ringtoets.Common.Data.Test/Probabilistics/LogNormalDistributionTest.cs =================================================================== diff -u -r7d6e4c28a40fb056c182d0691dda2b2e88aeebfd -r4a43331dbd65968b57983f4a40099d086553b4a7 --- Ringtoets/Common/test/Ringtoets.Common.Data.Test/Probabilistics/LogNormalDistributionTest.cs (.../LogNormalDistributionTest.cs) (revision 7d6e4c28a40fb056c182d0691dda2b2e88aeebfd) +++ Ringtoets/Common/test/Ringtoets.Common.Data.Test/Probabilistics/LogNormalDistributionTest.cs (.../LogNormalDistributionTest.cs) (revision 4a43331dbd65968b57983f4a40099d086553b4a7) @@ -123,7 +123,7 @@ TestDelegate call = () => distribution.StandardDeviation = (RoundedDouble) standardDeviation; // Assert - const string expectedMessage = "Standaard afwijking (\u03C3) moet groter zijn dan of gelijk aan 0."; + const string expectedMessage = "Standaard afwijking (\u03C3) moet groter zijn dan of gelijk zijn aan 0."; TestHelper.AssertThrowsArgumentExceptionAndTestMessage(call, expectedMessage); } Index: Ringtoets/Common/test/Ringtoets.Common.Data.Test/Probabilistics/NormalDistributionTest.cs =================================================================== diff -u -r7d6e4c28a40fb056c182d0691dda2b2e88aeebfd -r4a43331dbd65968b57983f4a40099d086553b4a7 --- Ringtoets/Common/test/Ringtoets.Common.Data.Test/Probabilistics/NormalDistributionTest.cs (.../NormalDistributionTest.cs) (revision 7d6e4c28a40fb056c182d0691dda2b2e88aeebfd) +++ Ringtoets/Common/test/Ringtoets.Common.Data.Test/Probabilistics/NormalDistributionTest.cs (.../NormalDistributionTest.cs) (revision 4a43331dbd65968b57983f4a40099d086553b4a7) @@ -92,7 +92,7 @@ TestDelegate call = () => distribution.StandardDeviation = (RoundedDouble) standardDeviation; // Assert - const string expectedMessage = "Standaard afwijking (\u03C3) moet groter zijn dan of gelijk aan 0."; + const string expectedMessage = "Standaard afwijking (\u03C3) moet groter zijn dan of gelijk zijn aan 0."; TestHelper.AssertThrowsArgumentExceptionAndTestMessage(call, expectedMessage); } } Index: Ringtoets/Common/test/Ringtoets.Common.Data.Test/Probabilistics/VariationCoefficientLogNormalDistributionTest.cs =================================================================== diff -u -r238800aea14ad46b711dc0520d9416a05f6693ae -r4a43331dbd65968b57983f4a40099d086553b4a7 --- Ringtoets/Common/test/Ringtoets.Common.Data.Test/Probabilistics/VariationCoefficientLogNormalDistributionTest.cs (.../VariationCoefficientLogNormalDistributionTest.cs) (revision 238800aea14ad46b711dc0520d9416a05f6693ae) +++ Ringtoets/Common/test/Ringtoets.Common.Data.Test/Probabilistics/VariationCoefficientLogNormalDistributionTest.cs (.../VariationCoefficientLogNormalDistributionTest.cs) (revision 4a43331dbd65968b57983f4a40099d086553b4a7) @@ -119,7 +119,7 @@ TestDelegate call = () => distribution.CoefficientOfVariation = (RoundedDouble)invalidCoefficient; // Assert - string expectedMessage = "Variatiecoëfficiënt (CV) moet groter of gelijk zijn aan 0."; + string expectedMessage = "Variatiecoëfficiënt (CV) moet groter zijn dan of gelijk zijn aan 0."; TestHelper.AssertThrowsArgumentExceptionAndTestMessage(call, expectedMessage); } } Index: Ringtoets/Common/test/Ringtoets.Common.Data.Test/Probabilistics/VariationCoefficientNormalDistributionTest.cs =================================================================== diff -u -r238800aea14ad46b711dc0520d9416a05f6693ae -r4a43331dbd65968b57983f4a40099d086553b4a7 --- Ringtoets/Common/test/Ringtoets.Common.Data.Test/Probabilistics/VariationCoefficientNormalDistributionTest.cs (.../VariationCoefficientNormalDistributionTest.cs) (revision 238800aea14ad46b711dc0520d9416a05f6693ae) +++ Ringtoets/Common/test/Ringtoets.Common.Data.Test/Probabilistics/VariationCoefficientNormalDistributionTest.cs (.../VariationCoefficientNormalDistributionTest.cs) (revision 4a43331dbd65968b57983f4a40099d086553b4a7) @@ -103,7 +103,7 @@ TestDelegate call = () => distribution.CoefficientOfVariation = (RoundedDouble)invalidCoefficient; // Assert - string expectedMessage = "Variatiecoëfficiënt (CV) moet groter of gelijk zijn aan 0."; + string expectedMessage = "Variatiecoëfficiënt (CV) moet groter zijn dan of gelijk zijn aan 0."; TestHelper.AssertThrowsArgumentExceptionAndTestMessage(call, expectedMessage); } }