Files
PhpSpreadsheet/tests/PhpSpreadsheetTests/Calculation/Functions/Statistical/ZTestTest.php
Mark Baker 35b65bef8c First steps toward array-enabling the information functions (#2608)
* First steps toward array-enabling the information functions

Also includes moving unit tests out from Functions and into a separate, dedicated Information folder

* Resolve issue with IF(), branch pruning and calculation cache (ensure that we don't convert the if condition to a bool before we've tested to see if it evaluates to an error)
More refactoring
2022-02-20 16:46:25 +01:00

55 lines
1.5 KiB
PHP

<?php
namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\Statistical;
use PhpOffice\PhpSpreadsheet\Calculation\Calculation;
use PhpOffice\PhpSpreadsheet\Calculation\Statistical;
use PHPUnit\Framework\TestCase;
class ZTestTest extends TestCase
{
/**
* @dataProvider providerZTEST
*
* @param mixed $expectedResult
* @param mixed $value
* @param mixed $dataSet
* @param null|mixed $sigma
*/
public function testZTEST($expectedResult, $dataSet, $value, $sigma = null): void
{
$result = Statistical::ZTEST($dataSet, $value, $sigma);
self::assertEqualsWithDelta($expectedResult, $result, 1E-12);
}
public function providerZTEST(): array
{
return require 'tests/data/Calculation/Statistical/ZTEST.php';
}
/**
* @dataProvider providerZTestArray
*/
public function testZTestArray(array $expectedResult, string $dataSet, string $m0): void
{
$calculation = Calculation::getInstance();
$formula = "=ZTEST({$dataSet}, {$m0})";
$result = $calculation->_calculateFormulaValue($formula);
self::assertEqualsWithDelta($expectedResult, $result, 1.0e-14);
}
public function providerZTestArray(): array
{
return [
'row vector' => [
[
[0.09057419685136381, 0.4516213175273426, 0.8630433891295299],
],
'{3, 6, 7, 8, 6, 5, 4, 2, 1, 9}',
'{4, 5, 6}',
],
];
}
}