Files
EightBitNet/LR35902/LR35902.FuseTest/Program.cs
2019-07-21 13:11:00 +01:00

18 lines
398 B
C#

// <copyright file="Program.cs" company="Adrian Conlon">
// Copyright (c) Adrian Conlon. All rights reserved.
// </copyright>
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();
}
}
}