2019-02-04 23:52:21 +00:00
|
|
|
|
// <copyright file="Program.cs" company="Adrian Conlon">
|
|
|
|
|
// Copyright (c) Adrian Conlon. All rights reserved.
|
|
|
|
|
// </copyright>
|
|
|
|
|
|
|
|
|
|
namespace Test
|
2019-02-02 15:12:51 +00:00
|
|
|
|
{
|
2019-02-04 23:52:21 +00:00
|
|
|
|
public class Program
|
2019-02-02 15:12:51 +00:00
|
|
|
|
{
|
2019-02-04 23:52:21 +00:00
|
|
|
|
public static void Main(string[] args)
|
2019-02-02 15:12:51 +00:00
|
|
|
|
{
|
|
|
|
|
var configuration = new Configuration();
|
|
|
|
|
|
2019-02-04 23:52:21 +00:00
|
|
|
|
////configuration.DebugMode = true;
|
2019-02-02 15:12:51 +00:00
|
|
|
|
|
|
|
|
|
var harness = new TestHarness(configuration);
|
|
|
|
|
harness.Run();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|