Exemplo n.º 1
0
 public function testGetRangeItemCounts()
 {
     $range = 10;
     $count = [50, 20, 20];
     $this->resource->expects($this->once())->method('getCount')->with($range)->will($this->returnValue($count));
     $this->assertSame($count, $this->target->getRangeItemCounts($range));
 }