Files
components/LiteCharms.Features.MidrandBooks.Tests/Common/IntegrationFactAttribute.cs
T

11 lines
272 B
C#

namespace LiteCharms.Features.MidrandBooks.Tests.Common;
public class IntegrationFactAttribute : FactAttribute
{
public IntegrationFactAttribute()
{
if(!Debugger.IsAttached)
Skip = "This test requires the debugger to be attached.";
}
}