/**
  * @return void
  */
 public function testExecute()
 {
     $this->abstractBlockMock->expects($this->once())->method('getCsvFile')->willReturn(['export']);
     $this->layoutMock->expects($this->once())->method('getChildBlock')->with('adminhtml.report.grid', 'grid.export');
     $this->fileFactoryMock->expects($this->once())->method('create')->with('customer_totals.csv', ['export'], \Magento\Framework\App\Filesystem\DirectoryList::VAR_DIR);
     $this->exportTotalsCsv->execute();
 }
Example #2
0
 /**
  * {@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);
     }
 }