You are here

function assertJsonStringNotEqualsJsonFile in Zircon Profile 8

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

Asserts that the generated JSON encoded object and the content of the given file are not equal.

Parameters

string $expectedFile:

string $actualJson:

string $message:

File

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

Code

function assertJsonStringNotEqualsJsonFile($expectedFile, $actualJson, $message = '') {
  return call_user_func_array('PHPUnit_Framework_Assert::assertJsonStringNotEqualsJsonFile', func_get_args());
}