mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2025-01-23 07:30:46 +00:00
63ef445a78
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
18 lines
413 B
C#
18 lines
413 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<RegisterState>("fuse-tests\\tests");
|
|
suite.Read();
|
|
suite.Parse();
|
|
suite.Run();
|
|
}
|
|
}
|
|
}
|