27 lines
674 B
PHP
27 lines
674 B
PHP
|
<?php
|
||
|
|
||
|
namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\Statistical;
|
||
|
|
||
|
use PhpOffice\PhpSpreadsheet\Calculation\Statistical;
|
||
|
use PHPUnit\Framework\TestCase;
|
||
|
|
||
|
class NormSInvTest extends TestCase
|
||
|
{
|
||
|
/**
|
||
|
* @dataProvider providerNORMSINV
|
||
|
*
|
||
|
* @param mixed $expectedResult
|
||
|
* @param mixed $testValue
|
||
|
*/
|
||
|
public function testNORMSINV($expectedResult, $testValue): void
|
||
|
{
|
||
|
$result = Statistical::NORMSINV($testValue);
|
||
|
self::assertEqualsWithDelta($expectedResult, $result, 1E-12);
|
||
|
}
|
||
|
|
||
|
public function providerNORMSINV(): array
|
||
|
{
|
||
|
return require 'tests/data/Calculation/Statistical/NORMSINV.php';
|
||
|
}
|
||
|
}
|