Asserts that the contents of one file is not equal to the contents of another file.
@since Method available since Release 3.2.14
string $expected:
string $actual:
string $message:
boolean $canonicalize:
boolean $ignoreCase:
function assertFileNotEquals($expected, $actual, $message = '', $canonicalize = FALSE, $ignoreCase = FALSE) {
return call_user_func_array('PHPUnit_Framework_Assert::assertFileNotEquals', func_get_args());
}