function assertAttributeNotContainsOnly

Asserts that a haystack that is stored in a static attribute of a class or an attribute of an object does not contain only values of a given type.

@since Method available since Release 3.1.4

Parameters

string $type:

string $haystackAttributeName:

mixed $haystackClassOrObject:

boolean $isNativeType:

string $message:

File

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

Code

function assertAttributeNotContainsOnly($type, $haystackAttributeName, $haystackClassOrObject, $isNativeType = NULL, $message = '') {
  return call_user_func_array('PHPUnit_Framework_Assert::assertAttributeNotContainsOnly', func_get_args());
}