Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | public function testCustomSpreadsheetCustomLoader(): void |
||
12 | { |
||
13 | $reader = new MyXlsxReader(); |
||
14 | $infile = 'tests/data/Reader/XLSX/colorscale.xlsx'; |
||
15 | /** @var MySpreadsheet */ |
||
16 | $mySpreadsheet = $reader->load($infile); |
||
17 | self::assertSame(64, $mySpreadsheet->calcSquare('A3')); |
||
18 | $mySpreadsheet->disconnectWorksheets(); |
||
19 | } |
||
21 |