function assertAttributeNotInstanceOf in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/phpunit/phpunit/src/Framework/Assert/Functions.php \assertAttributeNotInstanceOf()
Asserts that an attribute is of a given type.
@since Method available since Release 3.5.0
Parameters
string $expected:
string $attributeName:
mixed $classOrObject:
string $message:
File
- vendor/
phpunit/ phpunit/ src/ Framework/ Assert/ Functions.php, line 406
Code
function assertAttributeNotInstanceOf($expected, $attributeName, $classOrObject, $message = '') {
return call_user_func_array('PHPUnit_Framework_Assert::assertAttributeNotInstanceOf', func_get_args());
}