Ejemplo n.º 1
0
 public function testMustSendContent()
 {
     $this->assertTrue($this->response->mustSendContent());
     $this->response->disableSendContent();
     $this->assertFalse($this->response->mustSendContent());
     $this->response->enableSendContent();
     $this->assertTrue($this->response->mustSendContent());
 }