mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-08-25 01:28:19 +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 TinvTest extends AllSetupTeardown
|
|
{
|
|
/**
|
|
* @dataProvider providerTINV
|
|
*/
|
|
public function testTINV(mixed $expectedResult, mixed $probability, mixed $degrees): void
|
|
{
|
|
$this->runTestCaseReference('TINV', $expectedResult, $probability, $degrees);
|
|
}
|
|
|
|
public static function providerTINV(): array
|
|
{
|
|
return require 'tests/data/Calculation/Statistical/TINV.php';
|
|
}
|
|
|
|
/**
|
|
* @dataProvider providerTInvArray
|
|
*/
|
|
public function testTInvArray(array $expectedResult, string $values, string $degrees): void
|
|
{
|
|
$calculation = Calculation::getInstance();
|
|
|
|
$formula = "=TINV({$values}, {$degrees})";
|
|
$result = $calculation->_calculateFormulaValue($formula);
|
|
self::assertEqualsWithDelta($expectedResult, $result, 1.0e-14);
|
|
}
|
|
|
|
public static function providerTInvArray(): array
|
|
{
|
|
return [
|
|
'row vector' => [
|
|
[
|
|
[0.29001075058679815, 0.5023133547575189, 0.4713169827948964],
|
|
],
|
|
'0.65',
|
|
'{1.5, 3.5, 8}',
|
|
],
|
|
];
|
|
}
|
|
}
|