Files
Adrien Crivelli ec4098c8fd Strict mode for all tests
While we might never be able to have 100% of our code strict, we can at
the very least do it for all of our tests. This ensures that our tests
are using our API with the types as intended by the test author, and not
silently be cast to what our API requires.
2023-09-07 17:44:56 +08:00

33 lines
997 B
PHP

<?php
declare(strict_types=1);
use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError;
return [
[96.0, 3, 5],
[36.0, 9, '2'],
[ExcelError::VALUE(), 'ABC', 5],
[ExcelError::VALUE(), 5, 'ABC'],
[ExcelError::NAN(), 1, 48], // result too large
[ExcelError::NAN(), 1.1, 2], // first arg must be integer
[4.0, 1, 2.1], // second arg will be truncated
[ExcelError::NAN(), 0, 54], // second arg too large
[0.0, 0, 5],
[ExcelError::NAN(), -16, 2], // first arg cant be negative
[1.0, 4, -2], // negative shift permitted
[1.0, 4, -2.1], // negative shift and (ignored) fraction permitted
[4.0, 4, null],
[4.0, 4, false],
[8.0, 4, true],
[0.0, null, 4],
[4.0, 4, false],
[8.0, 4, true],
[0.0, false, 4],
[16.0, true, 4],
[8000000000.0, 1000000000, 3], // result > 2**32
[16000000000.0, 8000000000, 1], // argument > 2**32
[ExcelError::NAN(), 2 ** 50, 1], // argument >= 2**48
[1.0, 2 ** 47, -47],
];