| Conditions | 1 |
| Paths | 1 |
| Total Lines | 15 |
| Code Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | public function testSkip(): void |
||
| 17 | { |
||
| 18 | $this->insertDocument(1); |
||
| 19 | $this->insertDocument(2); |
||
| 20 | $this->insertDocument(3); |
||
| 21 | $this->insertDocument(4); |
||
| 22 | $this->insertDocument(5); |
||
| 23 | |||
| 24 | /** @var Cursor $cursor */ |
||
| 25 | $cursor = $this->r() |
||
| 26 | ->table('tabletest') |
||
| 27 | ->skip(2) |
||
| 28 | ->run(); |
||
| 29 | |||
| 30 | $this->assertCount(3, $cursor); |
||
| 31 | } |
||
| 33 |