Issue 2551 array enable lookup ref functions (#2606)
* Start work on array-enabling the Lookup and Reference functions Requires a new method (`evaluateArrayArgumentsSubsetFrom()`) in the `ArrayEnabled` Trait to handle functions where the arguments that need special array handling are trailing rather than leading arguments
This commit is contained in:
parent
c10d86eb9c
commit
71927f5591
|
|
@ -33,7 +33,7 @@ class ColumnsTest extends TestCase
|
||||||
/**
|
/**
|
||||||
* @dataProvider providerColumnsArray
|
* @dataProvider providerColumnsArray
|
||||||
*/
|
*/
|
||||||
public function testColumnsArray($expectedResult, string $argument): void
|
public function testColumnsArray(int $expectedResult, string $argument): void
|
||||||
{
|
{
|
||||||
$calculation = Calculation::getInstance();
|
$calculation = Calculation::getInstance();
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -33,7 +33,7 @@ class RowsTest extends TestCase
|
||||||
/**
|
/**
|
||||||
* @dataProvider providerRowsArray
|
* @dataProvider providerRowsArray
|
||||||
*/
|
*/
|
||||||
public function testRowsArray($expectedResult, string $argument): void
|
public function testRowsArray(int $expectedResult, string $argument): void
|
||||||
{
|
{
|
||||||
$calculation = Calculation::getInstance();
|
$calculation = Calculation::getInstance();
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue