Ejemplo n.º 1
0
 public function testClearHeaders()
 {
     $this->_response->setHeader('Content-Type', 'text/xml');
     $headers = $this->_response->getHeaders();
     $this->assertEquals(1, count($headers));
     $this->_response->clearHeaders();
     $headers = $this->_response->getHeaders();
     $this->assertEquals(0, count($headers));
 }