mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-08-31 12:40:00 +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.
54 lines
1.7 KiB
PHP
54 lines
1.7 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\Statistical;
|
|
|
|
use PhpOffice\PhpSpreadsheet\Calculation\Calculation;
|
|
|
|
class HypGeomDistTest extends AllSetupTeardown
|
|
{
|
|
#[\PHPUnit\Framework\Attributes\DataProvider('providerHYPGEOMDIST')]
|
|
public function testHYPGEOMDIST(mixed $expectedResult, mixed ...$args): void
|
|
{
|
|
$this->runTestCases('HYPGEOMDIST', $expectedResult, ...$args);
|
|
}
|
|
|
|
public static function providerHYPGEOMDIST(): array
|
|
{
|
|
return require 'tests/data/Calculation/Statistical/HYPGEOMDIST.php';
|
|
}
|
|
|
|
#[\PHPUnit\Framework\Attributes\DataProvider('providerHypGeomDistArray')]
|
|
public function testHypGeomDistArray(
|
|
array $expectedResult,
|
|
string $sampleSuccesses,
|
|
string $sampleNumber,
|
|
string $populationSuccesses,
|
|
string $populationNumber
|
|
): void {
|
|
$calculation = Calculation::getInstance();
|
|
|
|
$formula = "=HYPGEOMDIST({$sampleSuccesses}, {$sampleNumber}, {$populationSuccesses}, {$populationNumber})";
|
|
$result = $calculation->calculateFormula($formula);
|
|
self::assertEqualsWithDelta($expectedResult, $result, 1.0e-14);
|
|
}
|
|
|
|
public static function providerHypGeomDistArray(): array
|
|
{
|
|
return [
|
|
'row/column vectors' => [
|
|
[
|
|
[0.03230668326324188, 0.11602444697599835, 2.7420710766783583E-5],
|
|
[0.00015615400269340616, 0.1000501002971324, 0.02508542192762165],
|
|
[7.763976978296478E-9, 0.0013573140575961775, 0.17007598410538344],
|
|
],
|
|
'{5, 11, 18}',
|
|
'32',
|
|
'{28; 42; 57}',
|
|
'100',
|
|
],
|
|
];
|
|
}
|
|
}
|