public function testConstructorWithAssocArrayCreatesJsonObject() { $response = new JsonResponse(array( 'foo' => 'bar', )); $this ->assertSame('{"foo":"bar"}', $response ->getContent()); }