Assert Fail Test

This commit is contained in:
h z
2024-06-23 03:28:39 +08:00
parent dbcb96ec7c
commit 8b747279ce

10
tests/False.cs Normal file
View File

@@ -0,0 +1,10 @@
namespace SkeletonTest.tests;
public static class False
{
[Test]
public static void T()
{
Assert.Fail();
}
}