mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-09-22 00:00:43 +00:00
130c6e99d2
All of Calculation and Shared/OLE are left to tackle.
50 lines
1.6 KiB
PHP
50 lines
1.6 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace PhpOffice\PhpSpreadsheetTests\Shared\Trend;
|
|
|
|
use PhpOffice\PhpSpreadsheet\Shared\Trend\ExponentialBestFit;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class ExponentialBestFitTest extends TestCase
|
|
{
|
|
/**
|
|
* @param array<mixed> $expectedSlope
|
|
* @param array<mixed> $expectedIntersect
|
|
* @param array<mixed> $expectedGoodnessOfFit
|
|
* @param array<float> $yValues
|
|
* @param array<float> $xValues
|
|
*/
|
|
#[\PHPUnit\Framework\Attributes\DataProvider('providerExponentialBestFit')]
|
|
public function testExponentialBestFit(
|
|
array $expectedSlope,
|
|
array $expectedIntersect,
|
|
array $expectedGoodnessOfFit,
|
|
mixed $expectedEquation,
|
|
array $yValues,
|
|
array $xValues
|
|
): void {
|
|
$bestFit = new ExponentialBestFit($yValues, $xValues);
|
|
$slope = $bestFit->getSlope(1);
|
|
self::assertEquals($expectedSlope[0], $slope);
|
|
$slope = $bestFit->getSlope();
|
|
self::assertEquals($expectedSlope[1], $slope);
|
|
$intersect = $bestFit->getIntersect(1);
|
|
self::assertEquals($expectedIntersect[0], $intersect);
|
|
$intersect = $bestFit->getIntersect();
|
|
self::assertEquals($expectedIntersect[1], $intersect);
|
|
|
|
$equation = $bestFit->getEquation(2);
|
|
self::assertEquals($expectedEquation, $equation);
|
|
|
|
self::assertSame($expectedGoodnessOfFit[0], $bestFit->getGoodnessOfFit(6));
|
|
self::assertSame($expectedGoodnessOfFit[1], $bestFit->getGoodnessOfFit());
|
|
}
|
|
|
|
public static function providerExponentialBestFit(): array
|
|
{
|
|
return require 'tests/data/Shared/Trend/ExponentialBestFit.php';
|
|
}
|
|
}
|