MultiTenantFactAttribute.cs 277 B

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