chore: switch to nunit for test framework

This commit is contained in:
Stevan Freeborn
2024-04-03 12:25:25 -05:00
parent 6e090f9b4b
commit 795d9df07a
3 changed files with 22 additions and 16 deletions
+15
View File
@@ -0,0 +1,15 @@
namespace Blog.Tests;
public class Tests
{
[SetUp]
public void Setup()
{
}
[Test]
public void Test1()
{
Assert.Pass();
}
}