Example #1
0
 public function testGetMinSaleQty()
 {
     $store = 1;
     $customerGroupId = 2;
     $this->minSaleQtyHelperMock->expects($this->once())->method('getConfigValue')->with($customerGroupId, $store)->willReturn(1);
     $this->assertEquals(1.0, $this->model->getMinSaleQty($store, $customerGroupId));
 }