Exemplo n.º 1
0
 public function testAppendBody()
 {
     $response = new Response();
     $response->appendBody('testContent');
     $this->assertContains('testContent', $response->getBody());
 }