Files
oleibman 770eddf69d Still More Prep for Phpstan 10
Remaining:
- Calculation/LookupRef
- Calculation/Statistical
- Shared/OLE
- Odds and ends
2025-05-15 08:19:39 -07:00

34 lines
1.1 KiB
PHP

<?php
declare(strict_types=1);
namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\MathTrig;
use PHPUnit\Framework\Attributes\DataProvider;
class MdeTermTest extends AllSetupTeardown
{
/** @param array<mixed>|float|int|string $matrix */
#[DataProvider('providerMDETERM')]
public function testMDETERM2(float|int|string $expectedResult, array|int|float|string $matrix): void
{
$this->mightHaveException($expectedResult);
$sheet = $this->getSheet();
if (is_array($matrix)) {
$sheet->fromArray($matrix, null, 'A1', true);
$maxCol = $sheet->getHighestColumn();
$maxRow = $sheet->getHighestRow();
$sheet->getCell('Z1')->setValue("=MDETERM(A1:$maxCol$maxRow)");
} else {
$sheet->getCell('Z1')->setValue("=MDETERM($matrix)");
}
$result = $sheet->getCell('Z1')->getCalculatedValue();
self::assertEqualsWithDelta($expectedResult, $result, 1E-12);
}
public static function providerMDETERM(): array
{
return require 'tests/data/Calculation/MathTrig/MDETERM.php';
}
}