mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-09-24 09:09:22 +00:00
645d9fea64
Everything except Statistical.
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 ColumnsTest extends TestCase
|
|
{
|
|
/** @param null|mixed[]|string $arg */
|
|
#[DataProvider('providerCOLUMNS')]
|
|
public function testCOLUMNS(mixed $expectedResult, null|array|string $arg): void
|
|
{
|
|
$result = LookupRef\RowColumnInformation::COLUMNS($arg);
|
|
self::assertEquals($expectedResult, $result);
|
|
}
|
|
|
|
public static function providerCOLUMNS(): array
|
|
{
|
|
return require 'tests/data/Calculation/LookupRef/COLUMNS.php';
|
|
}
|
|
|
|
#[DataProvider('providerColumnsArray')]
|
|
public function testColumnsArray(int $expectedResult, string $argument): void
|
|
{
|
|
$calculation = Calculation::getInstance();
|
|
|
|
$formula = "=COLUMNS({$argument})";
|
|
$result = $calculation->_calculateFormulaValue($formula);
|
|
self::assertEquals($expectedResult, $result);
|
|
}
|
|
|
|
public static function providerColumnsArray(): array
|
|
{
|
|
return [
|
|
[
|
|
3,
|
|
'{1,2,3;4,5,6}',
|
|
],
|
|
[
|
|
5,
|
|
'{1,2,3,4,5}',
|
|
],
|
|
[
|
|
1,
|
|
'{1;2;3;4;5}',
|
|
],
|
|
];
|
|
}
|
|
}
|