LogicalOperator Enumeration |
The logical operators for complex 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 LogicalOperator
<SerializableAttribute>
<DataContractAttribute(Namespace := "http://www.hummingbird-alm.com/testframework/201610")>
Public Enumeration LogicalOperator
[SerializableAttribute]
[DataContractAttribute(Namespace = L"http://www.hummingbird-alm.com/testframework/201610")]
public enum class LogicalOperator
[<SerializableAttribute>]
[<DataContractAttribute(Namespace = "http://www.hummingbird-alm.com/testframework/201610")>]
type LogicalOperator
Members
| Member name | Value | Description |
---|
| And | 0 |
And operator, the left and right conditions must be True to get overall result True, otherwise, False
|
| Or | 1 |
Or operator, either left or right conditions be true to get overall result True, otherwise, False
|
| Xor | 2 |
Xor operator, left and right conditions must have different results to get overall result True, otherwise, False.
this operator is equals to left != right
|
| Nand | 3 |
Negative-AND operator, the result is negative to AND operator
|
| Nor | 4 |
Negative-OR operator, the result is negative to OR operator
|
| Xnor | 5 |
Negative-XOR operator, the result is negative to XOR operator. this operator is equals to left = right
|
See Also