diff --git a/EDILibraryTests/EDILibraryTests.csproj b/EDILibraryTests/EDILibraryTests.csproj index 525467a..f2c2506 100644 --- a/EDILibraryTests/EDILibraryTests.csproj +++ b/EDILibraryTests/EDILibraryTests.csproj @@ -6,8 +6,8 @@ - - + + diff --git a/EDILibraryTests/EdifactFormatVersionTests.cs b/EDILibraryTests/EdifactFormatVersionTests.cs index 6970741..daec8db 100644 --- a/EDILibraryTests/EdifactFormatVersionTests.cs +++ b/EDILibraryTests/EdifactFormatVersionTests.cs @@ -99,10 +99,10 @@ public void TestFormatVersionOrder() [TestMethod] public void NoPruefiNoFormat() { - Assert.ThrowsException(() => + Assert.Throws(() => EdifactFormatHelper.FromPruefidentifikator(null) ); - Assert.ThrowsException(() => + Assert.Throws(() => EdifactFormatHelper.FromPruefidentifikator(" ") ); } @@ -110,7 +110,7 @@ public void NoPruefiNoFormat() [TestMethod] public void UnmappedThrowsNotImplemented() { - Assert.ThrowsException(() => + Assert.Throws(() => EdifactFormatHelper.FromPruefidentifikator("88888") ); }