You are here

function assertAttributeNotSame in Zircon Profile 8

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

Asserts that a variable and an attribute of an object do not 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 440

Code

function assertAttributeNotSame($expected, $actualAttributeName, $actualClassOrObject, $message = '') {
  return call_user_func_array('PHPUnit_Framework_Assert::assertAttributeNotSame', func_get_args());
}