13 lines
383 B
C#
13 lines
383 B
C#
namespace MxGateway.IntegrationTests;
|
|
|
|
public static class IntegrationTestEnvironment
|
|
{
|
|
public const string LiveMxAccessVariableName = "MXGATEWAY_RUN_LIVE_MXACCESS_TESTS";
|
|
|
|
public static bool LiveMxAccessTestsEnabled =>
|
|
string.Equals(
|
|
Environment.GetEnvironmentVariable(LiveMxAccessVariableName),
|
|
"1",
|
|
StringComparison.Ordinal);
|
|
}
|