EightBitNet/LR35902/LR35902.FuseTest/Program.cs
Adrian Conlon a9a03d946a Refactor LR35902 test runner. Better, but still not working.
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
2019-07-20 19:17:08 +01:00

14 lines
271 B
C#

namespace Fuse
{
public static class Program
{
public static void Main(string[] args)
{
var suite = new TestSuite("fuse-tests\\tests");
suite.Read();
suite.Parse();
suite.Run();
}
}
}