function assertNotCount

Asserts the number of elements of an array, Countable or Iterator.

Parameters

integer $expectedCount:

mixed $haystack:

string $message:

File

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

Code

function assertNotCount($expectedCount, $haystack, $message = '') {
  return call_user_func_array('PHPUnit_Framework_Assert::assertNotCount', func_get_args());
}