function assertJsonStringNotEqualsJsonString in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/phpunit/phpunit/src/Framework/Assert/Functions.php \assertJsonStringNotEqualsJsonString()
Asserts that two given JSON encoded objects or arrays are not equal.
Parameters
string $expectedJson:
string $actualJson:
string $message:
File
- vendor/
phpunit/ phpunit/ src/ Framework/ Assert/ Functions.php, line 905
Code
function assertJsonStringNotEqualsJsonString($expectedJson, $actualJson, $message = '') {
return call_user_func_array('PHPUnit_Framework_Assert::assertJsonStringNotEqualsJsonString', func_get_args());
}