notContains() public static method

Checks assertion. Values must not contains expected needle.
public static notContains ( $needle, $actual, $description = NULL ) : void
return void
Beispiel #1
0
 public static function hasNot($expected)
 {
     return static::match(function ($arg) use($expected) {
         Assert::notContains($expected, $arg);
     });
 }