function assertAttributeSame in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/phpunit/phpunit/src/Framework/Assert/Functions.php \assertAttributeSame()
Asserts that a variable and an attribute of an object have the same type and value.
Parameters
mixed $expected:
string $actualAttributeName:
object $actualClassOrObject:
string $message:
File
- vendor/
phpunit/ phpunit/ src/ Framework/ Assert/ Functions.php, line 457
Code
function assertAttributeSame($expected, $actualAttributeName, $actualClassOrObject, $message = '') {
return call_user_func_array('PHPUnit_Framework_Assert::assertAttributeSame', func_get_args());
}