function assertAttributeNotContains

Asserts that a haystack that is stored in a static attribute of a class or an attribute of an object does not contain a needle.

@since Method available since Release 3.0.0

Parameters

mixed $needle:

string $haystackAttributeName:

mixed $haystackClassOrObject:

string $message:

boolean $ignoreCase:

boolean $checkForObjectIdentity:

File

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

Code

function assertAttributeNotContains($needle, $haystackAttributeName, $haystackClassOrObject, $message = '', $ignoreCase = FALSE, $checkForObjectIdentity = TRUE) {
  return call_user_func_array('PHPUnit_Framework_Assert::assertAttributeNotContains', func_get_args());
}