Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
30 | public function testGetCargoDescriptionList(): void |
||
31 | { |
||
32 | $actualResult = $this->model->getCargoDescriptionList(); |
||
33 | $this->assertNotEmpty($actualResult); |
||
34 | $entity = array_shift($actualResult); |
||
35 | $expectedKeys = [ |
||
36 | 'Ref', |
||
37 | 'Description', |
||
38 | 'DescriptionRu', |
||
39 | ]; |
||
40 | $this->assertEntity($entity, $expectedKeys); |
||
41 | } |
||
43 |