Example #1
0
 public function testGenerateLayoutBlocksWhenFlagIsSet()
 {
     $valueMap = [['', \Magento\Framework\App\ActionInterface::FLAG_NO_DISPATCH_BLOCK_EVENT, true], ['', \Magento\Framework\App\ActionInterface::FLAG_NO_DISPATCH_BLOCK_EVENT, true]];
     $this->_actionFlagMock->expects($this->any())->method('get')->will($this->returnValueMap($valueMap));
     $this->_eventManagerMock->expects($this->never())->method('dispatch');
     $this->_view->generateLayoutBlocks();
 }