function assertClassNotHasStaticAttribute in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/phpunit/phpunit/src/Framework/Assert/Functions.php \assertClassNotHasStaticAttribute()
Asserts that a class does not have 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 521
Code
function assertClassNotHasStaticAttribute($attributeName, $className, $message = '') {
return call_user_func_array('PHPUnit_Framework_Assert::assertClassNotHasStaticAttribute', func_get_args());
}