This Job will COMPLETE if all checks pass. It will be INCOMPLETE if any fail.
The conditional values are converted into the type of the value before the checks are made. Thus in the example below if the row count property is an integer, the 1000 is converted into an integer for the comparison.
| Name | Description | Required |
|---|---|---|
| value | The value to check. | No, but the check will fail. |
| eq | The value must be equal to this. | No. |
| ne | The value must be not equal to this. | No. |
| lt | The value must be less than this. | No. |
| le | The value must be less than or equals to this. | No. |
| gt | The value must be greater than this. | No. |
| ge | The value must be greater than or equal to this. | No. |
<test name="${myreport.rowCount}" gt="1000"/>