| Conditions | 2 |
| Paths | 2 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 2 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 18 | 3 | public function checkHeaders(CsvFile $csv): void |
|
| 19 | { |
||
| 20 | 3 | $csv->move(3); |
|
| 21 | 3 | $expected = ['c_Exportacion', 'Descripción', 'Fecha inicio de vigencia', 'Fecha fin de vigencia']; |
|
| 22 | 3 | $headers = $csv->readLine(); |
|
| 23 | |||
| 24 | 3 | if ($expected !== $headers) { |
|
| 25 | 1 | throw new RuntimeException("The headers did not match on file {$this->sourceFile()}"); |
|
| 26 | } |
||
| 27 | |||
| 28 | 2 | $csv->next(); |
|
| 29 | } |
||
| 41 |