RunState
The RunState enum indicates whether a test can be executed.
namespace NUnit.Framework.Interfaces
{
public enum RunState
{
NotRunnable,
Runnable,
Explicit,
Skipped,
Ignored
}
}