RunState Enum

Summary

The RunState enum indicates whether a test can be executed.
Namespace
TCLite.Interfaces
Interfaces
  • IComparable
  • IFormattable
  • IConvertible
Base Types
  • object
  • ValueType
  • Enum
graph BT Type-->Base0["Enum"] Base0-->Base1["ValueType"] Base1-->Base2["object"] Type-.->Interface0["IComparable"] Type-.->Interface1["IFormattable"] Type-.->Interface2["IConvertible"] Type["RunState"] class Type type-node

Syntax

public enum RunState

Fields

Name Constant Value Summary
Ignored 3
The test has been ignored. May appear on a Test, when the IgnoreAttribute is used.
static
NotRunnable 0
The test is not runnable.
static
Runnable 1
The test is runnable.
static
Skipped 2
The test has been skipped. This value may appear on a Test when certain attributes are used to skip the test.
static