VerifyGreater
bool VerifyGreater(int/double actual, int/double threshold)Description
Verifies that the actual numeric value is greater than the specified threshold.
Parameters
- actual - The numeric value retrieved from a UI control or variable.
- threshold - The minimum expected value.
Example
void main()
{
VerifyGreater(GetValue("SLD_VOLUME"), 50);
}