function assertAttributeEquals in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/phpunit/phpunit/src/Framework/Assert/Functions.php \assertAttributeEquals()
Asserts that a variable is equal to an attribute of an object.
Parameters
mixed $expected:
string $actualAttributeName:
string $actualClassOrObject:
string $message:
float $delta:
int $maxDepth:
bool $canonicalize:
bool $ignoreCase:
File
- vendor/
phpunit/ phpunit/ src/ Framework/ Assert/ Functions.php, line 191
Code
function assertAttributeEquals($expected, $actualAttributeName, $actualClassOrObject, $message = '', $delta = 0.0, $maxDepth = 10, $canonicalize = false, $ignoreCase = false) {
return call_user_func_array('PHPUnit_Framework_Assert::assertAttributeEquals', func_get_args());
}