using Xunit;
|
|
|
|
namespace MeetingSchedule.Tests
|
|
{
|
|
public sealed class MultiTenantFactAttribute : FactAttribute
|
|
{
|
|
public MultiTenantFactAttribute()
|
|
{
|
|
if (!MeetingScheduleConsts.MultiTenancyEnabled)
|
|
{
|
|
Skip = "MultiTenancy is disabled.";
|
|
}
|
|
}
|
|
}
|
|
}
|