mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-08-24 23:38:17 +00:00
3eedf9e2f0
Change "mixed" declarations to more accurate types in test members; in particular, change those that would be flagged if we were to run Phpstan at level 9 (we currently run level 8). I may or may not follow up with source code (over 700 level-9 problems remain for src), but, as with strict typing, there is no reason to avoid the effort for test members. It was necessary to update some doc blocks in src to accommodate this change. However, no executable code is touched.
51 lines
1.4 KiB
PHP
51 lines
1.4 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\Statistical;
|
|
|
|
use PhpOffice\PhpSpreadsheet\Calculation\Calculation;
|
|
|
|
class ChiDistLeftTailTest extends AllSetupTeardown
|
|
{
|
|
/**
|
|
* @dataProvider providerCHIDIST
|
|
*/
|
|
public function testCHIDIST(mixed $expectedResult, mixed ...$args): void
|
|
{
|
|
$this->runTestCaseReference('CHISQ.DIST', $expectedResult, ...$args);
|
|
}
|
|
|
|
public static function providerCHIDIST(): array
|
|
{
|
|
return require 'tests/data/Calculation/Statistical/CHIDISTLeftTail.php';
|
|
}
|
|
|
|
/**
|
|
* @dataProvider providerChiDistLeftTailArray
|
|
*/
|
|
public function testChiDistLeftTailArray(array $expectedResult, string $values, string $degrees): void
|
|
{
|
|
$calculation = Calculation::getInstance();
|
|
|
|
$formula = "=CHISQ.DIST({$values}, {$degrees}, false)";
|
|
/** @var float|int|string */
|
|
$result = $calculation->_calculateFormulaValue($formula);
|
|
self::assertEqualsWithDelta($expectedResult, $result, 1.0e-14);
|
|
}
|
|
|
|
public static function providerChiDistLeftTailArray(): array
|
|
{
|
|
return [
|
|
'row/column vectors' => [
|
|
[
|
|
[0.0925081978822616, 0.12204152134938745, 0.0881791375107928],
|
|
[0.007059977723446427, 0.03340047144527138, 0.07814672592526599],
|
|
],
|
|
'{3, 5, 8}',
|
|
'{7; 12}',
|
|
],
|
|
];
|
|
}
|
|
}
|