notEqual() public static method

Checks assertion. The identity of objects and the order of keys in the arrays are ignored.
public static notEqual ( $expected, $actual, $description = NULL ) : void
return void
コード例 #1
0
ファイル: Match.php プロジェクト: redhead/mockyll
 public static function isNot($expected)
 {
     return static::match(function ($arg) use($expected) {
         Assert::notEqual($expected, $arg);
     });
 }