notEqual() 공개 정적인 메소드

Checks assertion. The identity of objects and the order of keys in the arrays are ignored.
public static notEqual ( $expected, $actual, $description = NULL ) : void
리턴 void
예제 #1
0
파일: Match.php 프로젝트: redhead/mockyll
 public static function isNot($expected)
 {
     return static::match(function ($arg) use($expected) {
         Assert::notEqual($expected, $arg);
     });
 }