예제 #1
0
 public function testReturnsContentCorrectly()
 {
     $string = 'Foo Bar';
     $response = new Response();
     $response->setContent($string);
     $this->assertSame($string, $response->getContent());
 }