public static function PHPUnit_Framework_Assert::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:

6 calls to PHPUnit_Framework_Assert::assertAttributeNotEquals()

File

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

Class

PHPUnit_Framework_Assert
A set of assert methods.

Code

public static function assertAttributeNotEquals($expected, $actualAttributeName, $actualClassOrObject, $message = '', $delta = 0, $maxDepth = 10, $canonicalize = FALSE, $ignoreCase = FALSE) {
  self::assertNotEquals($expected, self::readAttribute($actualClassOrObject, $actualAttributeName), $message, $delta, $maxDepth, $canonicalize, $ignoreCase);
}