public function testGetManageStock()
 {
     $store = 1;
     $this->scopeConfigMock->expects($this->once())->method('isSetFlag')->with(Configuration::XML_PATH_MANAGE_STOCK, \Magento\Store\Model\ScopeInterface::SCOPE_STORE, $store)->willReturn(1);
     $this->assertEquals(1, $this->model->getManageStock($store));
 }