MultiTenantFactAttribute.cs 397 B

1234567891011121314151617
  1. using Xunit;
  2. namespace WTTO.FangCom.Tests
  3. {
  4. public sealed class MultiTenantFactAttribute : FactAttribute
  5. {
  6. private readonly bool _multiTenancyEnabled = FangComConsts.MultiTenancyEnabled;
  7. public MultiTenantFactAttribute()
  8. {
  9. if (!_multiTenancyEnabled)
  10. {
  11. Skip = "MultiTenancy is disabled.";
  12. }
  13. }
  14. }
  15. }