function assertStringNotMatchesFormat

Asserts that a string does not match 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 1428

Code

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