Beispiel #1
0
 public function testResponse()
 {
     $response = new Response();
     $this->assertEmpty($response->getContent());
     $response->setContent('test');
     $this->assertEquals('test', $response->getContent());
 }