You are here

function assertAttributeInstanceOf in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/phpunit/phpunit/src/Framework/Assert/Functions.php \assertAttributeInstanceOf()

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 242

Code

function assertAttributeInstanceOf($expected, $attributeName, $classOrObject, $message = '') {
  return call_user_func_array('PHPUnit_Framework_Assert::assertAttributeInstanceOf', func_get_args());
}