function assertAttributeEmpty in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/phpunit/phpunit/src/Framework/Assert/Functions.php \assertAttributeEmpty()
Asserts that a static attribute of a class or an attribute of an object is empty.
@since Method available since Release 3.5.0
Parameters
string $haystackAttributeName:
mixed $haystackClassOrObject:
string $message:
File
- vendor/
phpunit/ phpunit/ src/ Framework/ Assert/ Functions.php, line 171
Code
function assertAttributeEmpty($haystackAttributeName, $haystackClassOrObject, $message = '') {
return call_user_func_array('PHPUnit_Framework_Assert::assertAttributeEmpty', func_get_args());
}