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