public function testStaticCreateJsonObject() {
$response = JsonResponse::create(array(
'foo' => 'bar',
));
$this
->assertInstanceOf('Symfony\\Component\\HttpFoundation\\JsonResponse', $response);
$this
->assertSame('{"foo":"bar"}', $response
->getContent());
}