/** * {@inheritdoc} */ public function execute($ids) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'execute'); if (!$pluginInfo) { return parent::execute($ids); } else { return $this->___callPlugins('execute', func_get_args(), $pluginInfo); } }
public function testExecuteRow() { $except = 5; $this->productFlatIndexerRow->expects($this->any())->method('execute')->with($this->equalTo($except)); $this->model->executeRow($except); }