Example #1
0
 public function testGetIsQtyTypeIds()
 {
     $filter = 3;
     $configData = [1 => ['is_qty' => 1], 2 => ['is_qty' => 2], 3 => ['is_qty' => 3]];
     $this->configMock->expects($this->any())->method('getAll')->willReturn($configData);
     $this->assertEquals([3 => '3'], $this->model->getIsQtyTypeIds($filter));
 }