function assertAttributeCount in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/phpunit/phpunit/src/Framework/Assert/Functions.php \assertAttributeCount()
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 154
Code
function assertAttributeCount($expectedCount, $haystackAttributeName, $haystackClassOrObject, $message = '') {
return call_user_func_array('PHPUnit_Framework_Assert::assertAttributeCount', func_get_args());
}