You are here

function assertStringEqualsFile in Zircon Profile 8

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

Asserts that the contents of a string is 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 1368

Code

function assertStringEqualsFile($expectedFile, $actualString, $message = '', $canonicalize = false, $ignoreCase = false) {
  return call_user_func_array('PHPUnit_Framework_Assert::assertStringEqualsFile', func_get_args());
}