You are here

function assertAttributeNotCount in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/phpunit/phpunit/src/Framework/Assert/Functions.php \assertAttributeNotCount()

Asserts the number of elements of an array, Countable or Traversable that is stored in an attribute.

@since Method available since Release 3.6.0

Parameters

int $expectedCount:

string $haystackAttributeName:

mixed $haystackClassOrObject:

string $message:

File

vendor/phpunit/phpunit/src/Framework/Assert/Functions.php, line 352

Code

function assertAttributeNotCount($expectedCount, $haystackAttributeName, $haystackClassOrObject, $message = '') {
  return call_user_func_array('PHPUnit_Framework_Assert::assertAttributeNotCount', func_get_args());
}