mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-08-31 04:28:51 +00:00
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 TrendTest extends TestCase
|
|
{
|
|
/**
|
|
* @param mixed[] $yValues
|
|
* @param mixed[] $xValues
|
|
* @param null|mixed[] $newValues
|
|
*/
|
|
#[DataProvider('providerGROWTH')]
|
|
public function testTREND(mixed $expectedResult, array $yValues, array $xValues, ?array $newValues = null, ?bool $const = null): void
|
|
{
|
|
if ($newValues === null) {
|
|
$result = Statistical\Trends::TREND($yValues, $xValues);
|
|
} elseif ($const === null) {
|
|
$result = Statistical\Trends::TREND($yValues, $xValues, $newValues);
|
|
} else {
|
|
$result = Statistical\Trends::TREND($yValues, $xValues, $newValues, $const);
|
|
}
|
|
|
|
self::assertEqualsWithDelta($expectedResult, $result[0], 1E-12);
|
|
}
|
|
|
|
public static function providerGROWTH(): array
|
|
{
|
|
return require 'tests/data/Calculation/Statistical/TREND.php';
|
|
}
|
|
}
|