Example #1
0
 public function testIsDisplayProductStockStatus()
 {
     $store = 1;
     $this->scopeConfigMock->expects($this->once())->method('isSetFlag')->with(Configuration::XML_PATH_DISPLAY_PRODUCT_STOCK_STATUS, \Magento\Framework\Store\ScopeInterface::SCOPE_STORE, $store)->willReturn(1);
     $this->assertEquals(1, $this->model->isDisplayProductStockStatus($store));
 }