@covers PHPUnit_Framework_Assert::assertJsonStringEqualsJsonFile
public function testAssertJsonStringEqualsJsonFileExpectingException() {
$file = __DIR__ . '/../_files/JsonData/simpleObject.js';
try {
$this
->assertJsonStringEqualsJsonFile($file, NULL);
} catch (PHPUnit_Framework_Exception $e) {
return;
}
$this
->fail('Expected Exception not thrown.');
}