Example #1
0
 /**
  * Setup before each test.
  */
 protected function setUp()
 {
     $action = new Action('indexAction');
     $this->controller = new HomeController();
     $this->controller->setDispatcher(new Dispatcher());
     $this->controller->addDefaultListeners();
     $this->controller->setAction($action);
 }