PdfScribe/PdfScribeUnitTests/NUnitConsoleRunner.cs

15 lines
250 B
C#
Raw Normal View History

2013-12-12 09:52:42 +08:00
using System;
namespace PdfScribeUnitTests
{
// Written by blokeley
class NUnitConsoleRunner
{
[STAThread]
static void Main(string[] args)
{
NUnit.ConsoleRunner.Runner.Main(args);
}
}
}