function assertAttributeNotEquals

Asserts that a variable is not equal to an attribute of an object.

Parameters

mixed $expected:

string $actualAttributeName:

string $actualClassOrObject:

string $message:

float $delta:

integer $maxDepth:

boolean $canonicalize:

boolean $ignoreCase:

File

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

Code

function assertAttributeNotEquals($expected, $actualAttributeName, $actualClassOrObject, $message = '', $delta = 0, $maxDepth = 10, $canonicalize = FALSE, $ignoreCase = FALSE) {
  return call_user_func_array('PHPUnit_Framework_Assert::assertAttributeNotEquals', func_get_args());
}