コード例 #1
0
ファイル: ResponseTest.php プロジェクト: gabrielbull/router
 public function testSendBody()
 {
     $response = new Response('woot!');
     $response->sendBody();
     $this->expectOutputString('woot!');
 }