Initial commit: BizTalk SAP environment inventory

This commit is contained in:
2026-07-27 14:21:50 +02:00
commit 439427cc17
26 changed files with 5281 additions and 0 deletions
@@ -0,0 +1,31 @@
using System;
using BizTalkSapEnvironmentInventory.Infrastructure;
namespace BizTalkSapEnvironmentInventory.Tests
{
internal static class Program
{
private static int Main(string[] args)
{
try
{
if (args.Length == 2
&& string.Equals(args[0], "--write-sample", StringComparison.OrdinalIgnoreCase))
{
SelfTestRunner.WriteSample(args[1]);
Console.WriteLine("Musterbericht geschrieben: " + args[1]);
return 0;
}
SelfTestRunner.Run();
Console.WriteLine("Alle Tests erfolgreich.");
return 0;
}
catch (Exception exception)
{
Console.Error.WriteLine("Tests fehlgeschlagen: " + exception);
return 1;
}
}
}
}