Asserts that two variables are not equal.
@since Method available since Release 2.3.0
mixed $expected:
mixed $actual:
string $message:
float $delta:
integer $maxDepth:
boolean $canonicalize:
boolean $ignoreCase:
public static function assertNotEquals($expected, $actual, $message = '', $delta = 0, $maxDepth = 10, $canonicalize = FALSE, $ignoreCase = FALSE) {
$constraint = new PHPUnit_Framework_Constraint_Not(new PHPUnit_Framework_Constraint_IsEqual($expected, $delta, $maxDepth, $canonicalize, $ignoreCase));
self::assertThat($actual, $constraint, $message);
}