function assertClassHasStaticAttribute in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/phpunit/phpunit/src/Framework/Assert/Functions.php \assertClassHasStaticAttribute()
Asserts that a class has a specified static attribute.
@since Method available since Release 3.1.0
Parameters
string $attributeName:
string $className:
string $message:
File
- vendor/
phpunit/ phpunit/ src/ Framework/ Assert/ Functions.php, line 489
Code
function assertClassHasStaticAttribute($attributeName, $className, $message = '') {
return call_user_func_array('PHPUnit_Framework_Assert::assertClassHasStaticAttribute', func_get_args());
}