function assertAttributeNotEmpty in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/phpunit/phpunit/src/Framework/Assert/Functions.php \assertAttributeNotEmpty()
Asserts that a static attribute of a class or an attribute of an object is not 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 369
Code
function assertAttributeNotEmpty($haystackAttributeName, $haystackClassOrObject, $message = '') {
return call_user_func_array('PHPUnit_Framework_Assert::assertAttributeNotEmpty', func_get_args());
}