Index: Riskeer/MacroStabilityInwards/test/Riskeer.MacroStabilityInwards.IO.Test/Configurations/Helpers/MacroStabilityInwardsXElementExtensionsTest.cs =================================================================== diff -u -r80c53924c7488a48f8148ba8b73260446a262883 -rfc82638b2c9a392828c8b9c6e937787f748eb562 --- Riskeer/MacroStabilityInwards/test/Riskeer.MacroStabilityInwards.IO.Test/Configurations/Helpers/MacroStabilityInwardsXElementExtensionsTest.cs (.../MacroStabilityInwardsXElementExtensionsTest.cs) (revision 80c53924c7488a48f8148ba8b73260446a262883) +++ Riskeer/MacroStabilityInwards/test/Riskeer.MacroStabilityInwards.IO.Test/Configurations/Helpers/MacroStabilityInwardsXElementExtensionsTest.cs (.../MacroStabilityInwardsXElementExtensionsTest.cs) (revision fc82638b2c9a392828c8b9c6e937787f748eb562) @@ -36,37 +36,26 @@ private static IEnumerable GetInvalidDoubleValues() { yield return new TestCaseData(string.Format(CultureInfo.InvariantCulture, "{0}9", double.MaxValue), - typeof(OverflowException)) - .SetName("Larger than double.MaxValue"); + typeof(OverflowException)); yield return new TestCaseData(string.Format(CultureInfo.InvariantCulture, "{0}9", double.MinValue), - typeof(OverflowException)) - .SetName("Smaller than double.MinValue"); + typeof(OverflowException)); yield return new TestCaseData("Tweeenveertig", - typeof(FormatException)) - .SetName("Invalid format"); + typeof(FormatException)); } private static IEnumerable GetInvalidBoolValues() { - yield return new TestCaseData("0.05", - typeof(FormatException)) - .SetName("double format"); - yield return new TestCaseData("nope", - typeof(FormatException)) - .SetName("String format"); + yield return new TestCaseData("0.05", typeof(FormatException)); + yield return new TestCaseData("nope", typeof(FormatException)); } private static IEnumerable GetInvalidIntegerValues() { yield return new TestCaseData(string.Format(CultureInfo.InvariantCulture, "{0}9", int.MaxValue), - typeof(OverflowException)) - .SetName("Larger than int.MaxValue"); + typeof(OverflowException)); yield return new TestCaseData(string.Format(CultureInfo.InvariantCulture, "{0}9", int.MinValue), - typeof(OverflowException)) - .SetName("Smaller than int.MinValue"); - yield return new TestCaseData("Tweeenveertig", - typeof(FormatException)) - .SetName("Invalid format"); + typeof(OverflowException)); + yield return new TestCaseData("Tweeenveertig", typeof(FormatException)); } #region GetMacroStabilityInwardsLocationInputConfiguration