notContains() 공개 정적인 메소드

Checks assertion. Values must not contains expected needle.
public static notContains ( $needle, $actual, $description = NULL ) : void
리턴 void
예제 #1
0
파일: Match.php 프로젝트: redhead/mockyll
 public static function hasNot($expected)
 {
     return static::match(function ($arg) use($expected) {
         Assert::notContains($expected, $arg);
     });
 }