You are here

function equalTo in Zircon Profile 8.0

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

Returns a PHPUnit_Framework_Constraint_IsEqual matcher object.

@since Method available since Release 3.0.0

Parameters

mixed $value:

float $delta:

int $maxDepth:

bool $canonicalize:

bool $ignoreCase:

Return value

PHPUnit_Framework_Constraint_IsEqual

File

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

Code

function equalTo($value, $delta = 0.0, $maxDepth = 10, $canonicalize = false, $ignoreCase = false) {
  return call_user_func_array('PHPUnit_Framework_Assert::equalTo', func_get_args());
}