mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2024-11-15 14:06:49 +00:00
18 lines
377 B
C#
18 lines
377 B
C#
|
// <copyright file="Program.cs" company="Adrian Conlon">
|
|||
|
// Copyright (c) Adrian Conlon. All rights reserved.
|
|||
|
// </copyright>
|
|||
|
|
|||
|
namespace Fuse
|
|||
|
{
|
|||
|
class Program
|
|||
|
{
|
|||
|
static void Main(string[] args)
|
|||
|
{
|
|||
|
var suite = new TestSuite("fuse-tests\\tests");
|
|||
|
suite.Read();
|
|||
|
suite.Parse();
|
|||
|
suite.Run();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|