PhpSpreadsheet/tests/PhpSpreadsheetTests/Shared/Trend/LinearBestFitTest.php

50 lines
1.5 KiB
PHP

<?php
namespace PhpOffice\PhpSpreadsheetTests\Shared\Trend;
use PhpOffice\PhpSpreadsheet\Shared\Trend\LinearBestFit;
use PHPUnit\Framework\TestCase;
class LinearBestFitTest extends TestCase
{
/**
* @dataProvider providerLinearBestFit
*
* @param mixed $expectedSlope
* @param mixed $expectedIntersect
* @param mixed $expectedGoodnessOfFit
* @param mixed $yValues
* @param mixed $xValues
* @param mixed $expectedEquation
*/
public function testLinearBestFit(
$expectedSlope,
$expectedIntersect,
$expectedGoodnessOfFit,
$expectedEquation,
$yValues,
$xValues
): void {
$bestFit = new LinearBestFit($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 function providerLinearBestFit()
{
return require 'tests/data/Shared/Trend/LinearBestFit.php';
}
}