Cosmos/Tests/Cosmos.TestRunner.UnitTest/Program.cs
2017-04-25 00:28:03 +01:00

14 lines
270 B
C#

using System.Reflection;
using NUnitLite;
namespace Cosmos.TestRunner.UnitTest
{
public class Program
{
static int Main(string[] args)
{
return new AutoRun(typeof(Program).GetTypeInfo().Assembly).Execute(args);
}
}
}