function assertEquals

Asserts that two variables are equal.

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 654

Code

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