Excerpt | ||
---|---|---|
| ||
eq(value, compareValue) Returns True if two values are equal otherwise returns False. |
Function: eq()
Returns True if two values are equal otherwise returns False.
...
Examples
in.success == "Passed"
Returns True if in.success matches the string "Passed"
eq(in.custType == "BUSINESS")
Returns True if in.custType matches the string "BUSINESS"
$count == 5
Returns True when the $-Variable $count equals 5.