You are here

function assertStringNotMatchesFormatFile in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/phpunit/phpunit/src/Framework/Assert/Functions.php \assertStringNotMatchesFormatFile()

Asserts that a string does not match a given format string.

@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 1451

Code

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