Stub test project

This commit is contained in:
Jordan Wages 2025-08-19 04:42:37 -05:00
commit 3efc97e9d0
3 changed files with 40 additions and 1 deletions

16
src/tests/UnitTest1.cs Normal file
View file

@ -0,0 +1,16 @@
namespace tests
{
public class Tests
{
[SetUp]
public void Setup()
{
}
[Test]
public void Test1()
{
Assert.Pass();
}
}
}