Esempio n. 1
0
 public function testInvalidQuote()
 {
     $this->basicStub($this->quoteMock, 'hasError')->willReturn(true);
     $expectedPath = 'checkout/cart';
     $this->resultRedirectMock->expects($this->once())->method('setPath')->with($expectedPath)->willReturnSelf();
     $this->assertSame($this->resultRedirectMock, $this->model->executeInternal());
 }
 /**
  * {@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);
     }
 }
Esempio n. 3
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);
     }
 }