Cosmos/Tests/Cosmos.TestRunner/Program.cs
2015-06-27 18:33:52 +02:00

28 lines
845 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Cosmos.TestRunner.Core;
namespace Cosmos.TestRunner.Console
{
class Program
{
static void Main(string[] args)
{
var xEngine = new Engine();
xEngine.AddKernel(typeof(Cosmos.Compiler.Tests.SimpleWriteLine.Kernel.Kernel).Assembly.Location);
xEngine.AddKernel(typeof(SimpleStructsAndArraysTest.Kernel).Assembly.Location);
xEngine.AddKernel(typeof(VGACompilerCrash.Kernel).Assembly.Location);
// known bugs, therefor disabled for now:
xEngine.OutputHandler = new OutputHandlerXml(@"c:\data\CosmosTests.xml");
//xEngine.OutputHandler = new OutputHandlerConsole();
xEngine.Execute();
}
}
}