13 lines
321 B
C#
13 lines
321 B
C#
namespace MxGateway.IntegrationTests;
|
|
|
|
public sealed class IntegrationTestEnvironmentTests
|
|
{
|
|
[Fact]
|
|
public void LiveMxAccessTests_AreOptInByEnvironmentVariable()
|
|
{
|
|
Assert.Equal(
|
|
"MXGATEWAY_RUN_LIVE_MXACCESS_TESTS",
|
|
IntegrationTestEnvironment.LiveMxAccessVariableName);
|
|
}
|
|
}
|