function assertStringNotEqualsFile in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/phpunit/phpunit/src/Framework/Assert/Functions.php \assertStringNotEqualsFile()
Asserts that the contents of a string is not equal to the contents of a file.
@since Method available since Release 3.3.0
Parameters
string $expectedFile:
string $actualString:
string $message:
bool $canonicalize:
bool $ignoreCase:
File
- vendor/
phpunit/ phpunit/ src/ Framework/ Assert/ Functions.php, line 1419
Code
function assertStringNotEqualsFile($expectedFile, $actualString, $message = '', $canonicalize = false, $ignoreCase = false) {
return call_user_func_array('PHPUnit_Framework_Assert::assertStringNotEqualsFile', func_get_args());
}