Enum RunState
- Namespace
- NUnit.Framework.Interfaces
- Assembly
- nunit.framework.dll
The RunState enum indicates whether a test can be executed.
public enum RunState
Fields
Explicit = 2The test can only be run explicitly
Ignored = 4The test has been ignored. May appear on a Test, when the IgnoreAttribute is used.
NotRunnable = 0The test is not runnable.
Runnable = 1The test is runnable.
Skipped = 3The test has been skipped. This value may appear on a Test when certain attributes are used to skip the test.