VerifyLess
VerifyLess(int/double actual, int/double threshold)Description
Verifies that the actual numeric value is less than the specified threshold.
Parameters
- actual - The numeric value retrieved from a UI control or variable.
- threshold - The maximum allowed value.
Example
void main()
{
VerifyLess(GetValue("PRG_DOWNLOAD"), 80);
}