You are here

function assertNotContainsOnly in Zircon Profile 8

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

bool $isNativeType:

string $message:

File

vendor/phpunit/phpunit/src/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());
}