You are here

function assertStringNotMatchesFormat in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/phpunit/phpunit/src/Framework/Assert/Functions.php \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

vendor/phpunit/phpunit/src/Framework/Assert/Functions.php, line 1435

Code

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