Initial commit: BizTalk application catalog
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user