public function testExecute() { $this->view->expects($this->any())->method('loadLayout')->will($this->returnValue(1)); $this->view->expects($this->any())->method('getPage')->will($this->returnValue($this->page)); $this->page->expects($this->any())->method('getConfig')->will($this->returnValue($this->config)); $this->config->expects($this->any())->method('getTitle')->will($this->returnValue($this->title)); $this->title->expects($this->any())->method('prepend')->with(__('Index Management'))->will($this->returnValue(1)); $this->view->expects($this->any())->method('renderLayout')->will($this->returnValue(1)); $this->object->execute(); }
/** * {@inheritdoc} */ public function dispatch(\Magento\Framework\App\RequestInterface $request) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'dispatch'); if (!$pluginInfo) { return parent::dispatch($request); } else { return $this->___callPlugins('dispatch', func_get_args(), $pluginInfo); } }
/** * {@inheritdoc} */ public function getResponse() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getResponse'); if (!$pluginInfo) { return parent::getResponse(); } else { return $this->___callPlugins('getResponse', func_get_args(), $pluginInfo); } }