function assertSelectRegExp in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/phpunit/phpunit/src/Framework/Assert/Functions.php \assertSelectRegExp()
assertSelectRegExp("#binder .name", "/Mike|Derek/", true, $xml); // any? assertSelectRegExp("#binder .name", "/Mike|Derek/", 3, $xml);// 3?
@since Method available since Release 3.3.0
Parameters
array $selector:
string $pattern:
int $count:
mixed $actual:
string $message:
bool $isHtml:
File
- vendor/
phpunit/ phpunit/ src/ Framework/ Assert/ Functions.php, line 1317
Code
function assertSelectRegExp($selector, $pattern, $count, $actual, $message = '', $isHtml = true) {
return call_user_func_array('PHPUnit_Framework_Assert::assertSelectRegExp', func_get_args());
}