Inheritance: extends Phprest\HttpFoundation\Response
Example #1
0
 public function testInstantiation()
 {
     $response = new Accepted('test content', ['Content-Type' => 'application/json']);
     $this->assertEquals(202, $response->getStatusCode());
     $this->assertEquals('test content', $response->getContent());
     $this->assertEquals('application/json', $response->headers->get('content-type'));
 }