Assert that a string is not included in another, or object is not included in an array.
The thing to search in.
The thing to search for.
Optional error message if the assertion does not hold.
assertNotIncludes('foobar', 'xxx');assertNotIncludes([9, 5, 3], 2); Copy
assertNotIncludes('foobar', 'xxx');assertNotIncludes([9, 5, 3], 2);
Assert that a string is not included in another, or object is not included in an array.