function assertNotEquals

Asserts that two variables are not equal.

@since Method available since Release 2.3.0

Parameters

mixed $expected:

mixed $actual:

string $message:

float $delta:

integer $maxDepth:

boolean $canonicalize:

boolean $ignoreCase:

File

drupal/core/vendor/phpunit/phpunit/PHPUnit/Framework/Assert/Functions.php, line 1023

Code

function assertNotEquals($expected, $actual, $message = '', $delta = 0, $maxDepth = 10, $canonicalize = FALSE, $ignoreCase = FALSE) {
  return call_user_func_array('PHPUnit_Framework_Assert::assertNotEquals', func_get_args());
}