function attributeEqualTo in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/phpunit/phpunit/src/Framework/Assert/Functions.php \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:
int $maxDepth:
bool $canonicalize:
bool $ignoreCase:
Return value
PHPUnit_Framework_Constraint_Attribute
File
- vendor/
phpunit/ phpunit/ src/ Framework/ Assert/ Functions.php, line 1821
Code
function attributeEqualTo($attributeName, $value, $delta = 0.0, $maxDepth = 10, $canonicalize = false, $ignoreCase = false) {
return call_user_func_array('PHPUnit_Framework_Assert::attributeEqualTo', func_get_args());
}