function attributeEqualTo

Returns a PHPUnit_Framework_Constraint_IsEqual matcher object that is wrapped in a PHPUnit_Framework_Constraint_Attribute matcher object.

@since Method available since Release 3.1.0

Parameters

string $attributeName:

mixed $value:

float $delta:

integer $maxDepth:

boolean $canonicalize:

boolean $ignoreCase:

Return value

PHPUnit_Framework_Constraint_Attribute

File

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

Code

function attributeEqualTo($attributeName, $value, $delta = 0, $maxDepth = 10, $canonicalize = FALSE, $ignoreCase = FALSE) {
  return call_user_func_array('PHPUnit_Framework_Assert::attributeEqualTo', func_get_args());
}