mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-08-24 11:58:39 +00:00
ec4098c8fd
While we might never be able to have 100% of our code strict, we can at the very least do it for all of our tests. This ensures that our tests are using our API with the types as intended by the test author, and not silently be cast to what our API requires.
49 lines
1.3 KiB
PHP
49 lines
1.3 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\Statistical;
|
|
|
|
use PhpOffice\PhpSpreadsheet\Calculation\Calculation;
|
|
|
|
class NormSInvTest extends AllSetupTeardown
|
|
{
|
|
/**
|
|
* @dataProvider providerNORMSINV
|
|
*/
|
|
public function testNORMSINV(mixed $expectedResult, mixed ...$args): void
|
|
{
|
|
$this->runTestCases('NORMSINV', $expectedResult, ...$args);
|
|
}
|
|
|
|
public static function providerNORMSINV(): array
|
|
{
|
|
return require 'tests/data/Calculation/Statistical/NORMSINV.php';
|
|
}
|
|
|
|
/**
|
|
* @dataProvider providerNormSInvArray
|
|
*/
|
|
public function testNormSInvArray(array $expectedResult, string $probabilities): void
|
|
{
|
|
$calculation = Calculation::getInstance();
|
|
|
|
$formula = "=NORMSINV({$probabilities})";
|
|
$result = $calculation->_calculateFormulaValue($formula);
|
|
self::assertEqualsWithDelta($expectedResult, $result, 1.0e-14);
|
|
}
|
|
|
|
public static function providerNormSInvArray(): array
|
|
{
|
|
return [
|
|
'row/column vectors' => [
|
|
[
|
|
['#NUM!', -1.959963986120195],
|
|
[-0.3853204662702544, 0.6744897502234225],
|
|
],
|
|
'{-0.75, 0.025; 0.35, 0.75}',
|
|
],
|
|
];
|
|
}
|
|
}
|