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