Files
PhpSpreadsheet/tests/PhpSpreadsheetTests/Calculation/Functions/MathTrig/MultinomialTest.php
T
Adrien Crivelli 1b05dfab8b Rector AddParamTypeBasedOnPHPUnitDataProviderRector
And quite a bit more manual changes. The idea is that typing of our
tests can be a bit more loose, so we assume PHPDoc is mostly correct. If
that happens to be wrong, it should be caught by the tests themselves.
2023-09-07 17:00:24 +08:00

33 lines
960 B
PHP

<?php
namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\MathTrig;
class MultinomialTest extends AllSetupTeardown
{
/**
* @dataProvider providerMULTINOMIAL
*/
public function testMULTINOMIAL(mixed $expectedResult, mixed ...$args): void
{
$this->mightHaveException($expectedResult);
$sheet = $this->getSheet();
$row = 0;
$excelArg = '';
foreach ($args as $arg) {
++$row;
$excelArg = "A1:A$row";
if ($arg !== null) {
$sheet->getCell("A$row")->setValue($arg);
}
}
$sheet->getCell('B1')->setValue("=MULTINOMIAL($excelArg)");
$result = $sheet->getCell('B1')->getCalculatedValue();
self::assertEqualsWithDelta($expectedResult, $result, 1E-12);
}
public static function providerMULTINOMIAL(): array
{
return require 'tests/data/Calculation/MathTrig/MULTINOMIAL.php';
}
}