@covers PHPUnit_Framework_Constraint_JsonMatches::toString
public function testToString() {
$jsonValue = json_encode(array(
'Mascott' => 'Tux',
));
$constraint = new PHPUnit_Framework_Constraint_JsonMatches($jsonValue);
$this
->assertEquals('matches JSON string "' . $jsonValue . '"', $constraint
->toString());
}