15 lines
250 B
C#
15 lines
250 B
C#
|
using System;
|
|||
|
|
|||
|
namespace PdfScribeUnitTests
|
|||
|
{
|
|||
|
// Written by blokeley
|
|||
|
class NUnitConsoleRunner
|
|||
|
{
|
|||
|
[STAThread]
|
|||
|
static void Main(string[] args)
|
|||
|
{
|
|||
|
NUnit.ConsoleRunner.Runner.Main(args);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|