mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-08-31 12:40:00 +00:00
5a9055ca6a
Fix all of Statistical. We can now use Level 10 going forward.
30 lines
834 B
PHP
30 lines
834 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\Statistical;
|
|
|
|
use PhpOffice\PhpSpreadsheet\Calculation\Statistical;
|
|
use PHPUnit\Framework\Attributes\DataProvider;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
// TODO Convert to Spreadsheet context.
|
|
class ChiTestTest extends TestCase
|
|
{
|
|
/**
|
|
* @param float[] $actual
|
|
* @param float[] $expected
|
|
*/
|
|
#[DataProvider('providerCHITEST')]
|
|
public function testCHITEST(mixed $expectedResult, array $actual, array $expected): void
|
|
{
|
|
$result = Statistical\Distributions\ChiSquared::test($actual, $expected);
|
|
self::assertEqualsWithDelta($expectedResult, $result, 1E-12);
|
|
}
|
|
|
|
public static function providerCHITEST(): array
|
|
{
|
|
return require 'tests/data/Calculation/Statistical/CHITEST.php';
|
|
}
|
|
}
|