Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
14 | public function testKeysResult() |
||
15 | { |
||
16 | $this->insertDocumentWithNumber(1, 1); |
||
17 | |||
18 | /** @var ResponseInterface $response */ |
||
19 | $response = $this->r() |
||
20 | ->table('tabletest') |
||
21 | ->get(1) |
||
22 | ->keys() |
||
23 | ->run(); |
||
24 | |||
25 | $this->assertInstanceOf(ResponseInterface::class, $response); |
||
26 | $this->assertCount(4, $response->getData()); |
||
27 | } |
||
29 |