You are here

function assertJsonFileNotEqualsJsonFile in Zircon Profile 8

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

Asserts that two JSON files are not equal.

Parameters

string $expectedFile:

string $actualFile:

string $message:

File

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

Code

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