function assertStringMatchesFormat

Asserts that a string matches a given format string.

@since Method available since Release 3.5.0

Parameters

string $format:

string $string:

string $message:

File

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

Code

function assertStringMatchesFormat($format, $string, $message = '') {
  return call_user_func_array('PHPUnit_Framework_Assert::assertStringMatchesFormat', func_get_args());
}