Exemplo n.º 1
0
 /**
  * Test write for replacing
  */
 public function testWriteReplace()
 {
     $r = new \Slim\Http\Response('Foo');
     $r->write('Bar', true);
     $this->assertEquals('Bar', $r->body());
 }