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);
     });
 }