11 lines
259 B
C#
11 lines
259 B
C#
namespace LiteCharms.Features.Tests.Common;
|
|
|
|
public class IntegrationFactAttribute : FactAttribute
|
|
{
|
|
public IntegrationFactAttribute()
|
|
{
|
|
if(!Debugger.IsAttached)
|
|
Skip = "This test requires the debugger to be attached.";
|
|
}
|
|
}
|