13 lines
353 B
C#
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.";
|
|
}
|
|
}
|
|
}
|