You are here

function assertFileEquals in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/phpunit/phpunit/src/Framework/Assert/Functions.php \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:

bool $canonicalize:

bool $ignoreCase:

File

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

Code

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