PhpSpreadsheet/tests/PhpSpreadsheetTests/Calculation/Functions/LookupRef/AddressTest.php

56 lines
1.5 KiB
PHP

<?php
namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\LookupRef;
use PhpOffice\PhpSpreadsheet\Calculation\Calculation;
use PhpOffice\PhpSpreadsheet\Calculation\Functions;
use PhpOffice\PhpSpreadsheet\Calculation\LookupRef;
use PHPUnit\Framework\TestCase;
class AddressTest extends TestCase
{
protected function setUp(): void
{
Functions::setCompatibilityMode(Functions::COMPATIBILITY_EXCEL);
}
/**
* @dataProvider providerADDRESS
*
* @param mixed $expectedResult
*/
public function testADDRESS($expectedResult, ...$args): void
{
$result = LookupRef::cellAddress(...$args);
self::assertEquals($expectedResult, $result);
}
public function providerADDRESS(): array
{
return require 'tests/data/Calculation/LookupRef/ADDRESS.php';
}
/**
* @dataProvider providerAddressArray
*/
public function testAddressArray(array $expectedResult, string $argument1, string $argument2): void
{
$calculation = Calculation::getInstance();
$formula = "=ADDRESS({$argument1}, {$argument2}, 4)";
$result = $calculation->_calculateFormulaValue($formula);
self::assertEquals($expectedResult, $result);
}
public function providerAddressArray(): array
{
return [
'row/column vectors' => [
[['A1', 'B1', 'C1'], ['A2', 'B2', 'C2'], ['A3', 'B3', 'C3']],
'{1; 2; 3}',
'{1, 2, 3}',
],
];
}
}