moduleDataSetupMock = $this->getMockBuilder(\Magento\Framework\Setup\ModuleDataSetupInterface::class) ->getMockForAbstractClass(); $this->contextMock = $this->getMockBuilder(\Magento\Eav\Model\Entity\Setup\Context::class) ->disableOriginalConstructor() ->getMock(); $this->cacheMock = $this->getMockBuilder(\Magento\Framework\App\CacheInterface::class) ->getMockForAbstractClass(); $this->collectionFactoryMock = $this->getMockBuilder(CollectionFactory::class) ->disableOriginalConstructor() ->getMock(); $this->scopeConfigMock = $this->getMockBuilder(\Magento\Framework\App\Config\ScopeConfigInterface::class) ->getMockForAbstractClass(); $this->objectManagerHelper = new ObjectManagerHelper($this); $this->model = $this->objectManagerHelper->getObject( \Magento\Quote\Setup\QuoteSetup::class, [ 'setup' => $this->moduleDataSetupMock, 'context' => $this->contextMock, 'cache' => $this->cacheMock, 'attrGroupCollectionFactory' => $this->collectionFactoryMock, 'config' => $this->scopeConfigMock ] ); } public function testGetConnection() { $this->moduleDataSetupMock->expects($this->once()) ->method('getConnection') ->with('checkout'); $this->model->getConnection(); } }