コード例 #1
0
ファイル: ResponseTest.php プロジェクト: dspbee/pivasic
 public function testResponse()
 {
     $response = new Response();
     $this->assertEmpty($response->getContent());
     $response->setContent('test');
     $this->assertEquals('test', $response->getContent());
 }