function assertStringNotEqualsFile

Asserts that the contents of a string is not equal to the contents of a file.

@since Method available since Release 3.3.0

Parameters

string $expectedFile:

string $actualString:

string $message:

boolean $canonicalize:

boolean $ignoreCase:

File

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

Code

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