Click or drag to resize

TestStatus Enumeration

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
Members
  Member nameValueDescription
NoRun0 The TestCase or TestStep is no started.
Pending1 The TestCase or TestStep is inserted to the running queue and will be executed.
Running2 The TestCase or TestStep is running.
Ignored3 The current test case or test step is ignored.
Passed4 The TestCase is executed with no technical error.
Warning5 The test has some predefined rules telling something wrong, but the test can be continue.
Abandoned6 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.
Failed7 Current test case or test step is Failed. a failed Test Step will fail a test case.
See Also