mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-08-30 20:18:00 +00:00
70b4ecd4d3
They aren't quite interchangeable. Both are used in the test suite, with no indication of why one or the other. I think we'd be best off being consistent. Based on the names, I think `_calculateFormulaValue` was intended as a private, or at least internal, method, so favor `calculateFormula`. I do not intend to rename or re-categorize `_calculateFormulaValue`, just remove its usage when it isn't clearly warranted.
55 lines
1.4 KiB
PHP
55 lines
1.4 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\LookupRef;
|
|
|
|
use PhpOffice\PhpSpreadsheet\Calculation\Calculation;
|
|
use PhpOffice\PhpSpreadsheet\Calculation\LookupRef;
|
|
use PHPUnit\Framework\Attributes\DataProvider;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class RowsTest extends TestCase
|
|
{
|
|
/** @param null|mixed[]|string $arg */
|
|
#[DataProvider('providerROWS')]
|
|
public function testROWS(mixed $expectedResult, null|array|string $arg): void
|
|
{
|
|
$result = LookupRef\RowColumnInformation::ROWS($arg);
|
|
self::assertEquals($expectedResult, $result);
|
|
}
|
|
|
|
public static function providerROWS(): array
|
|
{
|
|
return require 'tests/data/Calculation/LookupRef/ROWS.php';
|
|
}
|
|
|
|
#[DataProvider('providerRowsArray')]
|
|
public function testRowsArray(int $expectedResult, string $argument): void
|
|
{
|
|
$calculation = Calculation::getInstance();
|
|
|
|
$formula = "=ROWS({$argument})";
|
|
$result = $calculation->calculateFormula($formula);
|
|
self::assertSame($expectedResult, $result);
|
|
}
|
|
|
|
public static function providerRowsArray(): array
|
|
{
|
|
return [
|
|
[
|
|
2,
|
|
'{1,2,3;4,5,6}',
|
|
],
|
|
[
|
|
1,
|
|
'{1,2,3,4,5}',
|
|
],
|
|
[
|
|
5,
|
|
'{1;2;3;4;5}',
|
|
],
|
|
];
|
|
}
|
|
}
|