Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
20 | #[\PHPUnit\Framework\Attributes\DataProvider('providerXORLiteral')] |
||
21 | public function testXORLiteral(mixed $expectedResult, float|string $formula): void |
||
22 | { |
||
23 | $sheet = $this->getSheet(); |
||
24 | $sheet->getCell('A1')->setValue("=XOR($formula)"); |
||
25 | self::assertSame($expectedResult, $sheet->getCell('A1')->getCalculatedValue()); |
||
26 | } |
||
33 |