diff --git a/src/ApprovalTests.Tests/Core/SerializableExceptionsTest.cs b/src/ApprovalTests.Tests/Core/SerializableExceptionsTest.cs deleted file mode 100644 index 5c351bac..00000000 --- a/src/ApprovalTests.Tests/Core/SerializableExceptionsTest.cs +++ /dev/null @@ -1,21 +0,0 @@ -#if NET48 - -using ApprovalTests.Core.Exceptions; -using ApprovalTests.TheoryTests; -[TestFixture] -public class SerializableExceptionsTest -{ - [Test] - public void TestSerializable() - { - var r = "received"; - var a = "approved"; - Verify(new ApprovalMissingException(r, a)); - Verify(new ApprovalMismatchException(r, a)); - Verify(new ApprovalException(r, a)); - } - - static void Verify(object o) => - SerializableTheory.Verify(o, Assert.AreEqual); -} -#endif \ No newline at end of file