Define a Test of validity condition
[ConditionValid("Cond4", nameof(S1), "notempty")]
Determine whether the property S1(string) is not null and not empty
TestType | Property Type | Help |
empty | string | IsNullOrEmpty |
notempty | string | not IsNullOrEmpty |
null | class object | ==null |
notnull | class object | != null |
<none> | anything | string: not IsNullOrEmpty class object: not null ValueType(struct): not equals to default value |
For more information, please refer to the "Condition" description section
[v1.3]