Is Empty Rule ¶
This rule verifies that the property has an empty value (null
).
Syntax
1 2 | check <property String> is empty; check <property String> is empty if present; |
- property - The property being checked.
Example
1 2 | check "Other_Costs" is empty; check "Other_Costs" is empty if present; |