예제 #1
0
 /**
  * Sets up the fixture, for example, open a network connection.
  * This method is called before a test is executed.
  *
  * @return void
  */
 public function setUp()
 {
     Zend_Controller_Action_Helper_AutoCompleteTest_LayoutOverride::$_mvcInstance = null;
     Zend_Controller_Action_HelperBroker::resetHelpers();
     $this->request = new Zend_Controller_Request_Http();
     $this->response = new Zend_Controller_Response_Cli();
     $this->front = Zend_Controller_Front::getInstance();
     $this->front->resetInstance();
     $this->front->setRequest($this->request)->setResponse($this->response);
     $this->viewRenderer = Zend_Controller_Action_HelperBroker::getStaticHelper('viewRenderer');
     $this->layout = Zend_Layout::startMvc();
 }
예제 #2
0
 public static function resetMvcInstance()
 {
     self::$_mvcInstance = null;
 }