OnErrorBehavior Enumeration |
The behavior of the failed Test Step or Test Case
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 OnErrorBehavior
<SerializableAttribute>
<DataContractAttribute(Namespace := "http://www.hummingbird-alm.com/testframework/201610")>
Public Enumeration OnErrorBehavior
[SerializableAttribute]
[DataContractAttribute(Namespace = L"http://www.hummingbird-alm.com/testframework/201610")]
public enum class OnErrorBehavior
[<SerializableAttribute>]
[<DataContractAttribute(Namespace = "http://www.hummingbird-alm.com/testframework/201610")>]
type OnErrorBehavior
Members
| Member name | Value | Description |
---|
| ResumeNext | 0 |
The current Test Step or Test Case will be marked as Failed, but the Automation Engine will continue to execute the following Test Step or Test Case
|
| StopCurrentTest | 1 |
The current Test Step will be marked as Failed, All Test Steps after the current step will be ignored. Automation engine will continue to execute the following test case.
|
| StopTestSuite | 2 |
Stop the execution. All non-executed test cases will be ignored.
|
See Also