ThresholdTypes Enumeration |
The types of quality gates for an automated test.
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 ThresholdTypes
<DataContractAttribute(Namespace := "http://www.hummingbird-alm.com/testframework/201610")>
Public Enumeration ThresholdTypes
[DataContractAttribute(Namespace = L"http://www.hummingbird-alm.com/testframework/201610")]
public enum class ThresholdTypes
[<DataContractAttribute(Namespace = "http://www.hummingbird-alm.com/testframework/201610")>]
type ThresholdTypes
Members
| Member name | Value | Description |
---|
| ServiceAverageResponseTime | 0 |
The average response time of an individual service. Accepted threshold is a double value in number of seconds.
|
| ServicePassrate | 1 |
The pass-rate of an individual service. Accepted threshold is a double value between 0 to 100.
|
| ServiceMaxResponseTime | 2 |
The maximum response time of an individual service during the test.
|
| IterationAverageCycleTime | 3 |
The average cycle time in number of seconds for the execution of an iteration (all test steps).
|
| IterationPassrate | 4 |
The pass-rate of iterations. Accepted threshold is a double value between 0 to 100
|
| IterationMaxCycleTime | 5 |
The maximum cycle time in number of seconds for the execution of an iteration (all test steps).
|
See Also