Exemplo n.º 1
0
 public function testJsonOutput()
 {
     $objResponse = new JsonResponse(array('foo' => 'bar'), 201);
     $this->assertSame(201, $objResponse->getStatusCode());
     $this->assertSame("HTTP/1.1 201 Created\nContent-Length: 13\nContent-Type: application/json; charset=utf-8\n\n{\"foo\":\"bar\"}", (string) $objResponse);
 }