qrscript/QRScript.Test/UnitTest1.cs
Tony Bark 6501b72973 Renamed to QR Script
- Split into three projects: Library, Console, and Tests
- Library compiles as QRScript.Interpreter to avoid conflicts
2025-05-07 15:22:16 -04:00

15 lines
No EOL
167 B
C#

namespace QRScript.Test;
public class Tests
{
[SetUp]
public void Setup()
{
}
[Test]
public void Test1()
{
Assert.Pass();
}
}