i'm trying to check if an array doesn't cointain an element, but i have issues when the array is null:
Scenario Outline: Not contains
* match <foo> !contains 'c'
Examples:
|foo|
|['a']|
|null|
Any advice to write a match that is true also when the array is null?
Thanks