mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-09-26 04:18:25 +00:00
1b05dfab8b
And quite a bit more manual changes. The idea is that typing of our tests can be a bit more loose, so we assume PHPDoc is mostly correct. If that happens to be wrong, it should be caught by the tests themselves.
22 lines
626 B
PHP
22 lines
626 B
PHP
<?php
|
|
|
|
namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\Statistical;
|
|
|
|
class SteyxTest extends AllSetupTeardown
|
|
{
|
|
/**
|
|
* @dataProvider providerSTEYX
|
|
*/
|
|
public function testSTEYX(mixed $expectedResult, array $xargs, array $yargs): void
|
|
{
|
|
//$result = Statistical\Trends::STEYX($xargs, $yargs);
|
|
//self::assertEqualsWithDelta($expectedResult, $result, 1E-12);
|
|
$this->runTestCaseReference('STEYX', $expectedResult, $xargs, $yargs);
|
|
}
|
|
|
|
public static function providerSTEYX(): array
|
|
{
|
|
return require 'tests/data/Calculation/Statistical/STEYX.php';
|
|
}
|
|
}
|