Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
51 | public function it_slice_with_second_index(QueryBuilder $qb): void |
||
52 | { |
||
53 | $sliceNumber = 1; |
||
54 | |||
55 | $this->beConstructedWith($this->sliceSize, $sliceNumber); |
||
56 | |||
57 | $qb->setMaxResults($this->sliceSize)->shouldBeCalled(); |
||
58 | $qb->setFirstResult($this->sliceSize * $sliceNumber)->shouldBeCalled(); |
||
59 | |||
60 | $this->modify($qb, 'a'); |
||
61 | } |
||
62 | } |
||
63 |