mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-08-31 12:40:00 +00:00
5a9055ca6a
Fix all of Statistical. We can now use Level 10 going forward.
38 lines
1.1 KiB
PHP
38 lines
1.1 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\Statistical;
|
|
|
|
use PhpOffice\PhpSpreadsheet\Calculation\Statistical;
|
|
use PHPUnit\Framework\Attributes\DataProvider;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
// TODO Run test in spreadsheet context
|
|
class GrowthTest extends TestCase
|
|
{
|
|
/**
|
|
* @param mixed[] $yValues
|
|
* @param mixed[] $xValues
|
|
* @param null|mixed[] $newValues
|
|
*/
|
|
#[DataProvider('providerGROWTH')]
|
|
public function testGROWTH(mixed $expectedResult, array $yValues, array $xValues, ?array $newValues = null, ?bool $const = null): void
|
|
{
|
|
if ($newValues === null) {
|
|
$result = Statistical\Trends::GROWTH($yValues, $xValues);
|
|
} elseif ($const === null) {
|
|
$result = Statistical\Trends::GROWTH($yValues, $xValues, $newValues);
|
|
} else {
|
|
$result = Statistical\Trends::GROWTH($yValues, $xValues, $newValues, $const);
|
|
}
|
|
|
|
self::assertEqualsWithDelta($expectedResult, $result[0], 1E-12);
|
|
}
|
|
|
|
public static function providerGROWTH(): array
|
|
{
|
|
return require 'tests/data/Calculation/Statistical/GROWTH.php';
|
|
}
|
|
}
|