MultiTenantFactAttribute.cs 324 B

123456789101112131415
  1. using Xunit;
  2. namespace ImageServer.Tests
  3. {
  4. public sealed class MultiTenantFactAttribute : FactAttribute
  5. {
  6. public MultiTenantFactAttribute()
  7. {
  8. if (!ImageServerConsts.MultiTenancyEnabled)
  9. {
  10. Skip = "MultiTenancy is disabled.";
  11. }
  12. }
  13. }
  14. }