Files
mxaccessgw/src/MxGateway.IntegrationTests/LiveMxAccessFactAttribute.cs
T
2026-04-26 19:58:33 -04:00

13 lines
353 B
C#

namespace MxGateway.IntegrationTests;
public sealed class LiveMxAccessFactAttribute : FactAttribute
{
public LiveMxAccessFactAttribute()
{
if (!IntegrationTestEnvironment.LiveMxAccessTestsEnabled)
{
Skip = $"Set {IntegrationTestEnvironment.LiveMxAccessVariableName}=1 to run live MXAccess tests.";
}
}
}