function assertNotContainsOnly

Asserts that a haystack does not contain only values of a given type.

@since Method available since Release 3.1.4

Parameters

string $type:

mixed $haystack:

boolean $isNativeType:

string $message:

File

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

Code

function assertNotContainsOnly($type, $haystack, $isNativeType = NULL, $message = '') {
  return call_user_func_array('PHPUnit_Framework_Assert::assertNotContainsOnly', func_get_args());
}