function assertObjectNotHasAttribute in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/phpunit/phpunit/src/Framework/Assert/Functions.php \assertObjectNotHasAttribute()
Asserts that an object does not have a specified attribute.
@since Method available since Release 3.0.0
Parameters
string $attributeName:
object $object:
string $message:
File
- vendor/
phpunit/ phpunit/ src/ Framework/ Assert/ Functions.php, line 1199
Code
function assertObjectNotHasAttribute($attributeName, $object, $message = '') {
return call_user_func_array('PHPUnit_Framework_Assert::assertObjectNotHasAttribute', func_get_args());
}