Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
30 | public function testGetBackwardDeliveryCargoTypes(): void |
||
31 | { |
||
32 | $actualResult = $this->model->getBackwardDeliveryCargoTypes(); |
||
33 | $this->assertNotEmpty($actualResult); |
||
34 | $entity = array_shift($actualResult); |
||
35 | $expectedProperties = ['Description', 'Ref']; |
||
36 | $this->assertEntity($entity, $expectedProperties); |
||
37 | } |
||
39 |