VariableLevels Enumeration |
Sets the level of the variables, it can be Global, TestSuite or TestCase
Namespace:
Hummingbird.TestFramework.Automation
Assembly:
Hummingbird.TestFramework.Automation (in Hummingbird.TestFramework.Automation.dll) Version: 1.2.0.0
Syntax [DataContractAttribute(Namespace = "http://www.hummingbird-alm.com/testframework/201610")]
public enum VariableLevels
<DataContractAttribute(Namespace := "http://www.hummingbird-alm.com/testframework/201610")>
Public Enumeration VariableLevels
[DataContractAttribute(Namespace = L"http://www.hummingbird-alm.com/testframework/201610")]
public enum class VariableLevels
[<DataContractAttribute(Namespace = "http://www.hummingbird-alm.com/testframework/201610")>]
type VariableLevels
Members
| Member name | Value | Description |
---|
| TestCase | 0 |
The variable is in the Test Case scope, they are not accessible when current test case is finished.
|
| TestSuite | 1 |
The variable is available in the Test Suite scope, they are not accessible from another Test Suite.
|
| Project | 2 |
The variable is available within the current automation project.
|
See Also