Click or drag to resize

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
Members
  Member nameValueDescription
And0 And operator, the left and right conditions must be True to get overall result True, otherwise, False
Or1 Or operator, either left or right conditions be true to get overall result True, otherwise, False
Xor2 Xor operator, left and right conditions must have different results to get overall result True, otherwise, False. this operator is equals to left != right
Nand3 Negative-AND operator, the result is negative to AND operator
Nor4 Negative-OR operator, the result is negative to OR operator
Xnor5 Negative-XOR operator, the result is negative to XOR operator. this operator is equals to left = right
See Also