function assertStringMatchesFormatFile in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/phpunit/phpunit/src/Framework/Assert/Functions.php \assertStringMatchesFormatFile()
Asserts that a string matches a given format file.
@since Method available since Release 3.5.0
Parameters
string $formatFile:
string $string:
string $message:
File
- vendor/
phpunit/ phpunit/ src/ Framework/ Assert/ Functions.php, line 1400
Code
function assertStringMatchesFormatFile($formatFile, $string, $message = '') {
return call_user_func_array('PHPUnit_Framework_Assert::assertStringMatchesFormatFile', func_get_args());
}