function 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

drupal/core/vendor/phpunit/phpunit/PHPUnit/Framework/Assert/Functions.php, line 456

Code

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