Inegrate calendi in meeting Schedule
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
332 B

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