mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-08-25 20:08:22 +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.
48 lines
1.3 KiB
PHP
48 lines
1.3 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\Statistical;
|
|
|
|
use PhpOffice\PhpSpreadsheet\Calculation\Calculation;
|
|
|
|
class BetaInvTest extends AllSetupTeardown
|
|
{
|
|
/**
|
|
* @dataProvider providerBETAINV
|
|
*/
|
|
public function testBETAINV(mixed $expectedResult, mixed ...$args): void
|
|
{
|
|
$this->runTestCaseReference('BETAINV', $expectedResult, ...$args);
|
|
}
|
|
|
|
public static function providerBETAINV(): array
|
|
{
|
|
return require 'tests/data/Calculation/Statistical/BETAINV.php';
|
|
}
|
|
|
|
/**
|
|
* @dataProvider providerBetaInvArray
|
|
*/
|
|
public function testBetaInvArray(array $expectedResult, string $argument1, string $argument2, string $argument3): void
|
|
{
|
|
$calculation = Calculation::getInstance();
|
|
|
|
$formula = "=BETAINV({$argument1}, {$argument2}, {$argument3})";
|
|
$result = $calculation->_calculateFormulaValue($formula);
|
|
self::assertEqualsWithDelta($expectedResult, $result, 1.0e-14);
|
|
}
|
|
|
|
public static function providerBetaInvArray(): array
|
|
{
|
|
return [
|
|
'row/column vectors' => [
|
|
[[0.24709953547, 0.346789605377], [0.215382947588, 0.307844847105]],
|
|
'0.25',
|
|
'{5, 7.5}',
|
|
'{10; 12}',
|
|
],
|
|
];
|
|
}
|
|
}
|