mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-21 05:18:38 +00:00
23 lines
560 B
C#
23 lines
560 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();
|
|
|
|
DefaultEngineConfiguration.Apply(xEngine);
|
|
|
|
xEngine.OutputHandler = new OutputHandlerXml(@"c:\data\CosmosTests.xml");
|
|
//xEngine.OutputHandler = new OutputHandlerConsole();
|
|
xEngine.Execute();
|
|
}
|
|
}
|
|
}
|