mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-09-04 14:38:16 +00:00
70b4ecd4d3
They aren't quite interchangeable. Both are used in the test suite, with no indication of why one or the other. I think we'd be best off being consistent. Based on the names, I think `_calculateFormulaValue` was intended as a private, or at least internal, method, so favor `calculateFormula`. I do not intend to rename or re-categorize `_calculateFormulaValue`, just remove its usage when it isn't clearly warranted.
77 lines
2.5 KiB
PHP
77 lines
2.5 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\MathTrig;
|
|
|
|
use PhpOffice\PhpSpreadsheet\Calculation\Calculation;
|
|
|
|
class FactTest extends AllSetupTeardown
|
|
{
|
|
const FACT_PRECISION = 1E-12;
|
|
|
|
#[\PHPUnit\Framework\Attributes\DataProvider('providerFACT')]
|
|
public function testFACT(mixed $expectedResult, mixed $arg1): void
|
|
{
|
|
$this->mightHaveException($expectedResult);
|
|
$sheet = $this->getSheet();
|
|
if ($arg1 !== null) {
|
|
$sheet->getCell('A1')->setValue($arg1);
|
|
}
|
|
if ($arg1 === 'omitted') {
|
|
$sheet->getCell('B1')->setValue('=FACT()');
|
|
} else {
|
|
$sheet->getCell('B1')->setValue('=FACT(A1)');
|
|
}
|
|
$result = $sheet->getCell('B1')->getCalculatedValue();
|
|
self::assertEquals($expectedResult, $result);
|
|
}
|
|
|
|
public static function providerFACT(): array
|
|
{
|
|
return require 'tests/data/Calculation/MathTrig/FACT.php';
|
|
}
|
|
|
|
#[\PHPUnit\Framework\Attributes\DataProvider('providerFACTGnumeric')]
|
|
public function testFACTGnumeric(mixed $expectedResult, mixed $arg1): void
|
|
{
|
|
$this->mightHaveException($expectedResult);
|
|
self::setGnumeric();
|
|
$sheet = $this->getSheet();
|
|
if ($arg1 !== null) {
|
|
$sheet->getCell('A1')->setValue($arg1);
|
|
}
|
|
if ($arg1 === 'omitted') {
|
|
$sheet->getCell('B1')->setValue('=FACT()');
|
|
} else {
|
|
$sheet->getCell('B1')->setValue('=FACT(A1)');
|
|
}
|
|
$result = $sheet->getCell('B1')->getCalculatedValue();
|
|
self::assertEqualsWithDelta($expectedResult, $result, self::FACT_PRECISION);
|
|
}
|
|
|
|
public static function providerFACTGnumeric(): array
|
|
{
|
|
return require 'tests/data/Calculation/MathTrig/FACTGNUMERIC.php';
|
|
}
|
|
|
|
#[\PHPUnit\Framework\Attributes\DataProvider('providerFactArray')]
|
|
public function testFactArray(array $expectedResult, string $array): void
|
|
{
|
|
$calculation = Calculation::getInstance();
|
|
|
|
$formula = "=FACT({$array})";
|
|
$result = $calculation->calculateFormula($formula);
|
|
self::assertEqualsWithDelta($expectedResult, $result, self::FACT_PRECISION);
|
|
}
|
|
|
|
public static function providerFactArray(): array
|
|
{
|
|
return [
|
|
'row vector' => [[['#NUM!', 120, 362880]], '{-2, 5, 9}'],
|
|
'column vector' => [[['#NUM!'], [120], [362880]], '{-2; 5; 9}'],
|
|
'matrix' => [[['#NUM!', 120], [362880, 6]], '{-2, 5; 9, 3.5}'],
|
|
];
|
|
}
|
|
}
|