24 lines
596 B
C#
24 lines
596 B
C#
using System;
|
|
using BizTalkApplicationCatalog.Infrastructure;
|
|
|
|
namespace BizTalkApplicationCatalog.Tests
|
|
{
|
|
internal static class Program
|
|
{
|
|
private static int Main(string[] args)
|
|
{
|
|
try
|
|
{
|
|
SelfTestRunner.Run(args.Length > 0 ? args[0] : null);
|
|
Console.WriteLine("Alle Tests erfolgreich.");
|
|
return 0;
|
|
}
|
|
catch (Exception exception)
|
|
{
|
|
Console.Error.WriteLine("TEST FEHLGESCHLAGEN: " + exception);
|
|
return 1;
|
|
}
|
|
}
|
|
}
|
|
}
|