mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-08-29 19:49:26 +00:00
e41c4280f6
Start removing some of the deprecations, starting with the old Excel Function implementations.
28 lines
732 B
PHP
28 lines
732 B
PHP
<?php
|
|
|
|
namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\Statistical;
|
|
|
|
use PhpOffice\PhpSpreadsheet\Calculation\Statistical\Distributions\ChiSquared;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class ChiTestTest extends TestCase
|
|
{
|
|
/**
|
|
* @dataProvider providerCHITEST
|
|
*
|
|
* @param mixed $expectedResult
|
|
* @param mixed $actual
|
|
* @param mixed $expected
|
|
*/
|
|
public function testCHITEST($expectedResult, $actual, $expected): void
|
|
{
|
|
$result = ChiSquared::test($actual, $expected);
|
|
self::assertEqualsWithDelta($expectedResult, $result, 1E-12);
|
|
}
|
|
|
|
public function providerCHITEST(): array
|
|
{
|
|
return require 'tests/data/Calculation/Statistical/CHITEST.php';
|
|
}
|
|
}
|