function assertNotRegExp in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/phpunit/phpunit/src/Framework/Assert/Functions.php \assertNotRegExp()
Asserts that a string does not match a given regular expression.
@since Method available since Release 2.1.0
Parameters
string $pattern:
string $string:
string $message:
File
- vendor/
phpunit/ phpunit/ src/ Framework/ Assert/ Functions.php, line 1100
Code
function assertNotRegExp($pattern, $string, $message = '') {
return call_user_func_array('PHPUnit_Framework_Assert::assertNotRegExp', func_get_args());
}