You are here

function assertNotEquals in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/phpunit/phpunit/src/Framework/Assert/Functions.php \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:

int $maxDepth:

bool $canonicalize:

bool $ignoreCase:

File

vendor/phpunit/phpunit/src/Framework/Assert/Functions.php, line 1023

Code

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