1234567891011121314151617 |
- using Xunit;
- namespace WTTO.FangCom.Tests
- {
- public sealed class MultiTenantFactAttribute : FactAttribute
- {
- private readonly bool _multiTenancyEnabled = FangComConsts.MultiTenancyEnabled;
- public MultiTenantFactAttribute()
- {
- if (!_multiTenancyEnabled)
- {
- Skip = "MultiTenancy is disabled.";
- }
- }
- }
- }
|