Summary
The TestStatus enum indicates the result of running a test
- 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["TestStatus"]
class Type type-node
Syntax
public enum TestStatus
Fields
Name | Constant Value | Summary |
---|---|---|
Failed | 3 |
The test failed
static
|
Inconclusive | 0 |
The test was inconclusive
static
|
Passed | 2 |
The test succeeded
static
|
Skipped | 1 |
The test has skipped
static
|
Warning | 4 |
The test issued a warning
static
|