Files
oleibman 7e9c3814c4 Update PhpStan
Too many errors when Dependabot tried. These seem mostly to involve `implode`, whose use is often embedded in other function calls. For that reason, these changes include a higher proportion than usual of `// @phpstan-ignore-line`.
2026-04-03 13:00:27 -07:00

49 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 ChooseTest extends TestCase
{
#[DataProvider('providerCHOOSE')]
public function testCHOOSE(mixed $expectedResult, mixed ...$args): void
{
$result = LookupRef\Selection::choose(...$args);
self::assertEquals($expectedResult, $result);
}
public static function providerCHOOSE(): array
{
return require 'tests/data/Calculation/LookupRef/CHOOSE.php';
}
/** @param string[] $selections */
#[DataProvider('providerChooseArray')]
public function testChooseArray(array $expectedResult, string $values, array $selections): void
{
$calculation = Calculation::getInstance();
$selections = implode(',', $selections);
$formula = "=CHOOSE({$values}, {$selections})";
$result = $calculation->calculateFormula($formula);
self::assertSame($expectedResult, $result);
}
public static function providerChooseArray(): array
{
return [
'row vector' => [
[['Orange', 'Blue', 'Yellow']],
'{2, 5, 3}',
['"Red"', '"Orange"', '"Yellow"', '"Green"', '"Blue"'],
],
];
}
}