function assertSelectCount

Assert the presence, absence, or count of elements in a document matching the CSS $selector, regardless of the contents of those elements.

The first argument, $selector, is the CSS selector used to match the elements in the $actual document.

The second argument, $count, can be either boolean or numeric. When boolean, it asserts for presence of elements matching the selector (TRUE) or absence of elements (FALSE). When numeric, it asserts the count of elements.

assertSelectCount("#binder", true, $xml); // any? assertSelectCount(".binder", 3, $xml); // exactly 3?

@since Method available since Release 3.3.0 @author Mike Naberezny <mike@maintainable.com> @author Derek DeVries <derek@maintainable.com>

Parameters

array $selector:

integer $count:

mixed $actual:

string $message:

boolean $isHtml:

File

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

Code

function assertSelectCount($selector, $count, $actual, $message = '', $isHtml = TRUE) {
  return call_user_func_array('PHPUnit_Framework_Assert::assertSelectCount', func_get_args());
}