Index: Ringtoets/ClosingStructures/test/Ringtoets.ClosingStructures.Forms.Test/Views/ClosingStructuresFailureMechanismResultViewTest.cs =================================================================== diff -u -r2429aa91817027afae06141dad589f2c81e4fd42 -r2cd2b6b5b050b005019185c1c2a4dd28ae0e2ad2 --- Ringtoets/ClosingStructures/test/Ringtoets.ClosingStructures.Forms.Test/Views/ClosingStructuresFailureMechanismResultViewTest.cs (.../ClosingStructuresFailureMechanismResultViewTest.cs) (revision 2429aa91817027afae06141dad589f2c81e4fd42) +++ Ringtoets/ClosingStructures/test/Ringtoets.ClosingStructures.Forms.Test/Views/ClosingStructuresFailureMechanismResultViewTest.cs (.../ClosingStructuresFailureMechanismResultViewTest.cs) (revision 2cd2b6b5b050b005019185c1c2a4dd28ae0e2ad2) @@ -610,8 +610,8 @@ [Test] [SetCulture("nl-NL")] - [TestCase("1.01")] - [TestCase("-0.01")] + [TestCase("1,01")] + [TestCase("-0,01")] [TestCase("5")] [TestCase("-10")] public void FailureMechanismResultView_EditValueAssessmentLayerThreeInvalid_ShowErrorToolTip(string newValue) @@ -633,7 +633,7 @@ [SetCulture("nl-NL")] [TestCase("1")] [TestCase("0")] - [TestCase("0.5")] + [TestCase("0,5")] [TestCase("1e-6")] [TestCase("NaN")] public void FailureMechanismResultView_EditValueAssessmentLayerThreeValid_DoNotShowErrorToolTipAndEditValue(string newValue) Index: Ringtoets/Common/test/Ringtoets.Common.Data.Test/Structures/StructuresFailureMechanismSectionResultTest.cs =================================================================== diff -u -r1df9f3fb1cb6d810ec8c37c214f1f655a5997706 -r2cd2b6b5b050b005019185c1c2a4dd28ae0e2ad2 --- Ringtoets/Common/test/Ringtoets.Common.Data.Test/Structures/StructuresFailureMechanismSectionResultTest.cs (.../StructuresFailureMechanismSectionResultTest.cs) (revision 1df9f3fb1cb6d810ec8c37c214f1f655a5997706) +++ Ringtoets/Common/test/Ringtoets.Common.Data.Test/Structures/StructuresFailureMechanismSectionResultTest.cs (.../StructuresFailureMechanismSectionResultTest.cs) (revision 2cd2b6b5b050b005019185c1c2a4dd28ae0e2ad2) @@ -81,7 +81,7 @@ TestDelegate call = () => sectionResult.AssessmentLayerThree = (RoundedDouble) invalidValue; // Assert - const string expectedMessage = "Kans moet in het bereik [0.0, 1.0] liggen."; + const string expectedMessage = "Kans moet in het bereik [0,0, 1,0] liggen."; TestHelper.AssertThrowsArgumentExceptionAndTestMessage(call, expectedMessage); } Index: Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Data.Test/GrassCoverErosionInwardsFailureMechanismSectionResultTest.cs =================================================================== diff -u -r1df9f3fb1cb6d810ec8c37c214f1f655a5997706 -r2cd2b6b5b050b005019185c1c2a4dd28ae0e2ad2 --- Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Data.Test/GrassCoverErosionInwardsFailureMechanismSectionResultTest.cs (.../GrassCoverErosionInwardsFailureMechanismSectionResultTest.cs) (revision 1df9f3fb1cb6d810ec8c37c214f1f655a5997706) +++ Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Data.Test/GrassCoverErosionInwardsFailureMechanismSectionResultTest.cs (.../GrassCoverErosionInwardsFailureMechanismSectionResultTest.cs) (revision 2cd2b6b5b050b005019185c1c2a4dd28ae0e2ad2) @@ -146,7 +146,7 @@ TestDelegate call = () => sectionResult.AssessmentLayerThree = (RoundedDouble)invalidValue; // Assert - const string expectedMessage = "Kans moet in het bereik [0.0, 1.0] liggen."; + const string expectedMessage = "Kans moet in het bereik [0,0, 1,0] liggen."; TestHelper.AssertThrowsArgumentExceptionAndTestMessage(call, expectedMessage); } Index: Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Forms.Test/Views/GrassCoverErosionInwardsFailureMechanismResultViewTest.cs =================================================================== diff -u -r2429aa91817027afae06141dad589f2c81e4fd42 -r2cd2b6b5b050b005019185c1c2a4dd28ae0e2ad2 --- Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Forms.Test/Views/GrassCoverErosionInwardsFailureMechanismResultViewTest.cs (.../GrassCoverErosionInwardsFailureMechanismResultViewTest.cs) (revision 2429aa91817027afae06141dad589f2c81e4fd42) +++ Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Forms.Test/Views/GrassCoverErosionInwardsFailureMechanismResultViewTest.cs (.../GrassCoverErosionInwardsFailureMechanismResultViewTest.cs) (revision 2cd2b6b5b050b005019185c1c2a4dd28ae0e2ad2) @@ -239,8 +239,8 @@ [Test] [SetCulture("nl-NL")] - [TestCase("1.01")] - [TestCase("-0.01")] + [TestCase("1,01")] + [TestCase("-0,01")] public void FailureMechanismResultView_EditValueAssessmentLayerThreeInvalid_ShowErrorToolTip(string newValue) { // Setup @@ -260,7 +260,7 @@ [SetCulture("nl-NL")] [TestCase("1")] [TestCase("0")] - [TestCase("0.5")] + [TestCase("0,5")] [TestCase("1e-6")] [TestCase("NaN")] public void FailureMechanismResultView_EditValueAssessmentLayerThreeValid_DoNotShowErrorToolTipAndEditValue(string newValue) Index: Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Forms.Test/Views/HeightStructuresFailureMechanismResultViewTest.cs =================================================================== diff -u -r2429aa91817027afae06141dad589f2c81e4fd42 -r2cd2b6b5b050b005019185c1c2a4dd28ae0e2ad2 --- Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Forms.Test/Views/HeightStructuresFailureMechanismResultViewTest.cs (.../HeightStructuresFailureMechanismResultViewTest.cs) (revision 2429aa91817027afae06141dad589f2c81e4fd42) +++ Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Forms.Test/Views/HeightStructuresFailureMechanismResultViewTest.cs (.../HeightStructuresFailureMechanismResultViewTest.cs) (revision 2cd2b6b5b050b005019185c1c2a4dd28ae0e2ad2) @@ -244,8 +244,8 @@ [Test] [SetCulture("nl-NL")] - [TestCase("1.01")] - [TestCase("-0.01")] + [TestCase("1,01")] + [TestCase("-0,01")] [TestCase("5")] [TestCase("-10")] public void FailureMechanismResultView_EditValueAssessmentLayerThreeInvalid_ShowErrorToolTip(string newValue) @@ -267,7 +267,7 @@ [SetCulture("nl-NL")] [TestCase("1")] [TestCase("0")] - [TestCase("0.5")] + [TestCase("0,5")] [TestCase("1e-6")] [TestCase("NaN")] public void FailureMechanismResultView_EditValueAssessmentLayerThreeValid_DoNotShowErrorToolTipAndEditValue(string newValue) Index: Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Data.Test/MacroStabilityInwardsFailureMechanismSectionResultTest.cs =================================================================== diff -u -r1df9f3fb1cb6d810ec8c37c214f1f655a5997706 -r2cd2b6b5b050b005019185c1c2a4dd28ae0e2ad2 --- Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Data.Test/MacroStabilityInwardsFailureMechanismSectionResultTest.cs (.../MacroStabilityInwardsFailureMechanismSectionResultTest.cs) (revision 1df9f3fb1cb6d810ec8c37c214f1f655a5997706) +++ Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Data.Test/MacroStabilityInwardsFailureMechanismSectionResultTest.cs (.../MacroStabilityInwardsFailureMechanismSectionResultTest.cs) (revision 2cd2b6b5b050b005019185c1c2a4dd28ae0e2ad2) @@ -63,7 +63,7 @@ TestDelegate call = () => sectionResult.AssessmentLayerThree = (RoundedDouble) invalidValue; // Assert - const string expectedMessage = "Kans moet in het bereik [0.0, 1.0] liggen."; + const string expectedMessage = "Kans moet in het bereik [0,0, 1,0] liggen."; TestHelper.AssertThrowsArgumentExceptionAndTestMessage(call, expectedMessage); } Index: Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Forms.Test/Views/MacroStabilityInwardsFailureMechanismResultViewTest.cs =================================================================== diff -u -rb6e0f8d41d92ed18c902138dd49cce6e703ee883 -r2cd2b6b5b050b005019185c1c2a4dd28ae0e2ad2 --- Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Forms.Test/Views/MacroStabilityInwardsFailureMechanismResultViewTest.cs (.../MacroStabilityInwardsFailureMechanismResultViewTest.cs) (revision b6e0f8d41d92ed18c902138dd49cce6e703ee883) +++ Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Forms.Test/Views/MacroStabilityInwardsFailureMechanismResultViewTest.cs (.../MacroStabilityInwardsFailureMechanismResultViewTest.cs) (revision 2cd2b6b5b050b005019185c1c2a4dd28ae0e2ad2) @@ -239,8 +239,8 @@ [Test] [SetCulture("nl-NL")] - [TestCase("1.01")] - [TestCase("-0.01")] + [TestCase("1,01")] + [TestCase("-0,01")] public void FailureMechanismResultView_EditValueAssessmentLayerThreeInvalid_ShowErrorToolTip(string newValue) { // Setup @@ -258,6 +258,7 @@ [Test] [TestCase("1")] + [TestCase("0,5")] [TestCase("1e-6")] [TestCase("NaN")] public void FailureMechanismResultView_EditValueAssessmentLayerThreeValid_DoNotShowErrorToolTipAndEditValue(string newValue) Index: Ringtoets/Piping/test/Ringtoets.Piping.Data.Test/PipingFailureMechanismSectionResultTest.cs =================================================================== diff -u -r1df9f3fb1cb6d810ec8c37c214f1f655a5997706 -r2cd2b6b5b050b005019185c1c2a4dd28ae0e2ad2 --- Ringtoets/Piping/test/Ringtoets.Piping.Data.Test/PipingFailureMechanismSectionResultTest.cs (.../PipingFailureMechanismSectionResultTest.cs) (revision 1df9f3fb1cb6d810ec8c37c214f1f655a5997706) +++ Ringtoets/Piping/test/Ringtoets.Piping.Data.Test/PipingFailureMechanismSectionResultTest.cs (.../PipingFailureMechanismSectionResultTest.cs) (revision 2cd2b6b5b050b005019185c1c2a4dd28ae0e2ad2) @@ -63,7 +63,7 @@ TestDelegate call = () => sectionResult.AssessmentLayerThree = (RoundedDouble) invalidValue; // Assert - const string expectedMessage = "Kans moet in het bereik [0.0, 1.0] liggen."; + const string expectedMessage = "Kans moet in het bereik [0,0, 1,0] liggen."; TestHelper.AssertThrowsArgumentExceptionAndTestMessage(call, expectedMessage); } Index: Ringtoets/Piping/test/Ringtoets.Piping.Forms.Test/Views/PipingFailureMechanismResultViewTest.cs =================================================================== diff -u -r2429aa91817027afae06141dad589f2c81e4fd42 -r2cd2b6b5b050b005019185c1c2a4dd28ae0e2ad2 --- Ringtoets/Piping/test/Ringtoets.Piping.Forms.Test/Views/PipingFailureMechanismResultViewTest.cs (.../PipingFailureMechanismResultViewTest.cs) (revision 2429aa91817027afae06141dad589f2c81e4fd42) +++ Ringtoets/Piping/test/Ringtoets.Piping.Forms.Test/Views/PipingFailureMechanismResultViewTest.cs (.../PipingFailureMechanismResultViewTest.cs) (revision 2cd2b6b5b050b005019185c1c2a4dd28ae0e2ad2) @@ -239,8 +239,8 @@ [Test] [SetCulture("nl-NL")] - [TestCase("1.01")] - [TestCase("-0.01")] + [TestCase("1,01")] + [TestCase("-0,01")] public void FailureMechanismResultView_EditValueAssessmentLayerThreeInvalid_ShowErrorToolTip(string newValue) { // Setup @@ -260,7 +260,7 @@ [SetCulture("nl-NL")] [TestCase("1")] [TestCase("0")] - [TestCase("0.5")] + [TestCase("0,5")] [TestCase("1e-6")] [TestCase("NaN")] public void FailureMechanismResultView_EditValueAssessmentLayerThreeValid_DoNotShowErrorToolTipAndEditValue(string newValue) Index: Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.Forms.Test/Views/StabilityPointStructuresFailureMechanismResultViewTest.cs =================================================================== diff -u -r2429aa91817027afae06141dad589f2c81e4fd42 -r2cd2b6b5b050b005019185c1c2a4dd28ae0e2ad2 --- Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.Forms.Test/Views/StabilityPointStructuresFailureMechanismResultViewTest.cs (.../StabilityPointStructuresFailureMechanismResultViewTest.cs) (revision 2429aa91817027afae06141dad589f2c81e4fd42) +++ Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.Forms.Test/Views/StabilityPointStructuresFailureMechanismResultViewTest.cs (.../StabilityPointStructuresFailureMechanismResultViewTest.cs) (revision 2cd2b6b5b050b005019185c1c2a4dd28ae0e2ad2) @@ -609,8 +609,8 @@ [Test] [SetCulture("nl-NL")] - [TestCase("1.01")] - [TestCase("-0.01")] + [TestCase("1,01")] + [TestCase("-0,01")] [TestCase("5")] [TestCase("-10")] public void FailureMechanismResultView_EditValueAssessmentLayerThreeInvalid_ShowErrorToolTip(string newValue) @@ -632,7 +632,7 @@ [SetCulture("nl-NL")] [TestCase("1")] [TestCase("0")] - [TestCase("0.5")] + [TestCase("0,5")] [TestCase("1e-6")] [TestCase("NaN")] public void FailureMechanismResultView_EditValueAssessmentLayerThreeValid_DoNotShowErrorToolTipAndEditValue(string newValue)