Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
25 | public function testOnSpreadsheet(): void |
||
26 | { |
||
27 | // very limited ability to test this in the absence of dynamic arrays |
||
28 | $sheet = $this->sheet; |
||
29 | $sheet->getCell('A1')->setValue('=MMULT({1,2,3}, {1,2,3})'); // incompatible dimensions |
||
30 | self::assertSame('#VALUE!', $sheet->getCell('A1')->getCalculatedValue()); |
||
31 | } |
||
33 |