You are here

function assertFileNotEquals in Zircon Profile 8

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

Asserts that the contents of one file is not equal to the contents of another file.

@since Method available since Release 3.2.14

Parameters

string $expected:

string $actual:

string $message:

bool $canonicalize:

bool $ignoreCase:

File

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

Code

function assertFileNotEquals($expected, $actual, $message = '', $canonicalize = false, $ignoreCase = false) {
  return call_user_func_array('PHPUnit_Framework_Assert::assertFileNotEquals', func_get_args());
}