namespace MxGateway.IntegrationTests; public sealed class LiveLdapFactAttribute : FactAttribute { public const string EnableVariableName = "MXGATEWAY_RUN_LIVE_LDAP_TESTS"; public LiveLdapFactAttribute() { if (!Enabled) { Skip = $"Set {EnableVariableName}=1 to run live LDAP tests."; } } public static bool Enabled => string.Equals( Environment.GetEnvironmentVariable(EnableVariableName), "1", StringComparison.Ordinal); }