build(2022): Restructure using NUnit not XUnit

This commit is contained in:
Josh Creek
2022-10-12 19:36:57 +01:00
parent 566be1e2b6
commit 5d101b116f
7 changed files with 47 additions and 52 deletions
+16
View File
@@ -0,0 +1,16 @@
namespace AOC.Test.Y2022
{
public class Day01
{
[SetUp]
public void Setup()
{
}
[Test]
public void Test1()
{
Assert.Pass();
}
}
}