function assertFileEquals

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

@since Method available since Release 3.2.14

Parameters

string $expected:

string $actual:

string $message:

boolean $canonicalize:

boolean $ignoreCase:

File

drupal/core/vendor/phpunit/phpunit/PHPUnit/Framework/Assert/Functions.php, line 688

Code

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