mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2024-12-26 22:31:01 +00:00
9a06b1743f
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
16 lines
296 B
C#
16 lines
296 B
C#
namespace Test
|
|
{
|
|
class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
var configuration = new Configuration();
|
|
|
|
configuration.DebugMode = true;
|
|
|
|
var harness = new TestHarness(configuration);
|
|
harness.Run();
|
|
}
|
|
}
|
|
}
|