@covers PHPUnit_Framework_Assert::assertJsonStringNotEqualsJsonString
public function testAssertJsonStringNotEqualsJsonString() {
$expected = '{"Mascott" : "Beastie"}';
$actual = '{"Mascott" : "Tux"}';
$message = 'Given Json strings do match';
$this
->assertJsonStringNotEqualsJsonString($expected, $actual, $message);
}