Пример #1
0
 /**
  * Reset the request object
  *
  * @return Enlight_Components_Test_Controller_TestCase
  */
 public function resetRequest()
 {
     if ($this->_request instanceof Zend_Controller_Request_Http) {
         $this->_request->clearQuery()->clearPost()->clearCookies();
     }
     $this->_request = null;
     return $this;
 }