Representing the status of a Test, Test Step or a Test Suite
Namespace:
Hummingbird.TestFramework.Automation
Assembly:
Hummingbird.TestFramework (in Hummingbird.TestFramework.dll) Version: 1.2.0.0
Syntax [SerializableAttribute]
[DataContractAttribute(Namespace = "http://www.hummingbird-alm.com/testframework/201610")]
public enum TestStatus
<SerializableAttribute>
<DataContractAttribute(Namespace := "http://www.hummingbird-alm.com/testframework/201610")>
Public Enumeration TestStatus
[SerializableAttribute]
[DataContractAttribute(Namespace = L"http://www.hummingbird-alm.com/testframework/201610")]
public enum class TestStatus
[<SerializableAttribute>]
[<DataContractAttribute(Namespace = "http://www.hummingbird-alm.com/testframework/201610")>]
type TestStatus
Members
| Member name | Value | Description |
---|
| NoRun | 0 |
The TestCase or TestStep is no started.
|
| Pending | 1 |
The TestCase or TestStep is inserted to the running queue and will be executed.
|
| Running | 2 |
The TestCase or TestStep is running.
|
| Ignored | 3 |
The current test case or test step is ignored.
|
| Passed | 4 |
The TestCase is executed with no technical error.
|
| Warning | 5 |
The test has some predefined rules telling something wrong, but the test can be continue.
|
| Abandoned | 6 |
Current test case or test step is abandoned because there are some critical errors happen in previous test/test step.
Normally, if one test case or step is abandoned, all following test case or test steps will also be marked as abandoned.
|
| Failed | 7 |
Current test case or test step is Failed. a failed Test Step will fail a test case.
|
See Also