mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-21 21:38:52 +00:00
14 lines
270 B
C#
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);
|
|
}
|
|
}
|
|
}
|