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