RelationalOperator Enumeration |
A set of relational operators which can be used to evaluate conditions
Namespace:
Hummingbird.TestFramework.Automation.Operators
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 RelationalOperator
<SerializableAttribute>
<DataContractAttribute(Namespace := "http://www.hummingbird-alm.com/testframework/201610")>
Public Enumeration RelationalOperator
[SerializableAttribute]
[DataContractAttribute(Namespace = L"http://www.hummingbird-alm.com/testframework/201610")]
public enum class RelationalOperator
[<SerializableAttribute>]
[<DataContractAttribute(Namespace = "http://www.hummingbird-alm.com/testframework/201610")>]
type RelationalOperator
Members
| Member name | Value | Description |
---|
| EqualsTo | 0 |
A is equals To B
|
| NotEqualsTo | 1 |
A is not equals to B
|
| GreaterThan | 2 |
A is exclusively greater than B (A>B)
|
| LessThan | 3 |
A is exclusively less than B (A<B)
|
| GreaterEquals | 4 |
A is greater than or equals to B (A>=B)
|
| LessEquals | 5 |
A is less than or equals to B (A<=B)
|
| StartsWith | 6 |
The text A starts with text B
|
| EndsWith | 7 |
The text A ends with text B
|
| Contains | 8 |
The text A contains the text B (B is a part of A)
|
| NotContains | 9 |
The text A does not contain the text B (B is not a part of A)
|
| NotStartsWith | 10 |
The text A does not start with text B
|
| NotEndsWith | 11 |
The text A does not ends with text B
|
See Also