ScenarioStatus Enumeration |
The current state of the performance test scenarios
Namespace:
Hummingbird.TestFramework.Automation
Assembly:
Hummingbird.TestFramework (in Hummingbird.TestFramework.dll) Version: 1.2.0.0
Syntax [DataContractAttribute(Namespace = "http://www.hummingbird-alm.com/testframework/201610")]
public enum ScenarioStatus
<DataContractAttribute(Namespace := "http://www.hummingbird-alm.com/testframework/201610")>
Public Enumeration ScenarioStatus
[DataContractAttribute(Namespace = L"http://www.hummingbird-alm.com/testframework/201610")]
public enum class ScenarioStatus
[<DataContractAttribute(Namespace = "http://www.hummingbird-alm.com/testframework/201610")>]
type ScenarioStatus
Members
| Member name | Value | Description |
---|
| NotStarted | 0 |
Default status, the scenario is not started.
|
| RampUp | 1 |
The scenario is under ramp-up state from 0 to expected load
|
| UnderLoad | 2 |
The under load
|
| RampUpToPeak | 3 |
The test is from ramp up period from Expected Load to Peak Load.
|
| UnderPeakLoad | 4 |
The test is under Peak Load
|
| Finishing | 5 |
The test is finished but waiting for the last thread to finish.
|
| Stop | 6 |
The test is stopped.
|
| Abandoned | 7 |
The test abandoned.
|
| FatalError | 8 |
A fatal error has occurred and the test cannot be executed.
|
See Also