Add live MXAccess worker smoke test

This commit is contained in:
Joseph Doherty
2026-04-26 19:58:33 -04:00
parent 160343aff4
commit 0f17a1d1d9
7 changed files with 666 additions and 0 deletions
@@ -0,0 +1,12 @@
namespace MxGateway.IntegrationTests;
public sealed class LiveMxAccessFactAttribute : FactAttribute
{
public LiveMxAccessFactAttribute()
{
if (!IntegrationTestEnvironment.LiveMxAccessTestsEnabled)
{
Skip = $"Set {IntegrationTestEnvironment.LiveMxAccessVariableName}=1 to run live MXAccess tests.";
}
}
}