You are here

function assertEquals in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/phpunit/phpunit/src/Framework/Assert/Functions.php \assertEquals()

Asserts that two variables are equal.

Parameters

mixed $expected:

mixed $actual:

string $message:

float $delta:

int $maxDepth:

bool $canonicalize:

bool $ignoreCase:

1 string reference to 'assertEquals'
PHPUnit_Extensions_PhptTestCase::run in vendor/phpunit/phpunit/src/Extensions/PhptTestCase.php
Runs a test and collects its result in a TestResult instance.

File

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

Code

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