You are here

function assertAttributeNotEquals in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/phpunit/phpunit/src/Framework/Assert/Functions.php \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:

int $maxDepth:

bool $canonicalize:

bool $ignoreCase:

File

vendor/phpunit/phpunit/src/Framework/Assert/Functions.php, line 389

Code

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