- Split into three projects: Library, Console, and Tests - Library compiles as QRScript.Interpreter to avoid conflicts
15 lines
No EOL
167 B
C#
15 lines
No EOL
167 B
C#
namespace QRScript.Test;
|
|
|
|
public class Tests
|
|
{
|
|
[SetUp]
|
|
public void Setup()
|
|
{
|
|
}
|
|
|
|
[Test]
|
|
public void Test1()
|
|
{
|
|
Assert.Pass();
|
|
}
|
|
} |