35 lines
952 B
PHP
35 lines
952 B
PHP
<?php
|
|
|
|
namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\MathTrig;
|
|
|
|
class SumSqTest extends AllSetupTeardown
|
|
{
|
|
/**
|
|
* @dataProvider providerSUMSQ
|
|
*
|
|
* @param mixed $expectedResult
|
|
*/
|
|
public function testSUMSQ($expectedResult, ...$args): void
|
|
{
|
|
$this->mightHaveException($expectedResult);
|
|
$maxRow = 0;
|
|
$funcArg = '';
|
|
$sheet = $this->sheet;
|
|
foreach ($args as $arg) {
|
|
++$maxRow;
|
|
$funcArg = "A1:A$maxRow";
|
|
if ($arg !== null) {
|
|
$sheet->getCell("A$maxRow")->setValue($arg);
|
|
}
|
|
}
|
|
$sheet->getCell('B1')->setValue("=SUMSQ($funcArg)");
|
|
$result = $sheet->getCell('B1')->getCalculatedValue();
|
|
self::assertEqualsWithDelta($expectedResult, $result, 1E-12);
|
|
}
|
|
|
|
public function providerSUMSQ(): array
|
|
{
|
|
return require 'tests/data/Calculation/MathTrig/SUMSQ.php';
|
|
}
|
|
}
|