<PackageReference Include="nunit" Version="2.5.10.11092" />

IgnoreAttribute

public class IgnoreAttribute : Attribute
Attribute used to mark a test that is to be ignored. Ignored tests result in a warning message when the tests are run.
public string Reason { get; }

The reason for ignoring a test

public IgnoreAttribute()

Constructs the attribute without giving a reason for ignoring the test.

public IgnoreAttribute(string reason)

Constructs the attribute giving a reason for ignoring the test