Hi,
I'm trying to create a view of tests without master test, using regular expression.
I tried various syntaxes, none actually worked.
Something like:
%MasterTest% = ""
or
"MasterTest" -eq null
Am I missing something?
View - Tests without Master test
If you check the manual you will discover:
- there is no = operator
- the is no -eq operator
- this is no "null"
- there is == operator
- you should use "" for strings
So correct expression may look like "%MasterTest%"==""
Regards
Alex
- there is no = operator
- the is no -eq operator
- this is no "null"
- there is == operator
- you should use "" for strings
So correct expression may look like "%MasterTest%"==""
Regards
Alex
Last edited by KS-Soft on Fri Nov 13, 2020 6:37 am, edited 1 time in total.