Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
14 | public function testGet(): void |
||
15 | { |
||
16 | $this->insertDocument(1); |
||
17 | |||
18 | /** @var ResponseInterface $res */ |
||
19 | $res = $this->r() |
||
20 | ->table('tabletest') |
||
21 | ->get(1) |
||
22 | ->run(); |
||
23 | |||
24 | $this->assertArraySubset(['id' => 1], $res->getData()); |
||
1 ignored issue
–
show
|
|||
25 | } |
||
42 |