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