//
// Copyright (c) Adrian Conlon. All rights reserved.
//
namespace LR35902.FuseTest
{
public static class Program
{
public static void Main(string[] args)
{
var suite = new TestSuite("fuse-tests\\tests");
suite.Read();
suite.Parse();
suite.Run();
}
}
}