Files
PhpSpreadsheet/tests/PhpSpreadsheetTests/Calculation/Functions/Information/IsOddTest.php
Mark Baker 35b65bef8c First steps toward array-enabling the information functions (#2608)
* First steps toward array-enabling the information functions

Also includes moving unit tests out from Functions and into a separate, dedicated Information folder

* Resolve issue with IF(), branch pruning and calculation cache (ensure that we don't convert the if condition to a bool before we've tested to see if it evaluates to an error)
More refactoring
2022-02-20 16:46:25 +01:00

57 lines
1.5 KiB
PHP

<?php
namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\Information;
use PhpOffice\PhpSpreadsheet\Calculation\Calculation;
use PhpOffice\PhpSpreadsheet\Calculation\Functions;
use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError;
use PHPUnit\Framework\TestCase;
class IsOddTest extends TestCase
{
public function testIsOddNoArgument(): void
{
$result = Functions::isOdd();
self::assertSame(ExcelError::NAME(), $result);
}
/**
* @dataProvider providerIsOdd
*
* @param bool|string $expectedResult
* @param mixed $value
*/
public function testIsOdd($expectedResult, $value): void
{
$result = Functions::isOdd($value);
self::assertEquals($expectedResult, $result);
}
public function providerIsOdd(): array
{
return require 'tests/data/Calculation/Information/IS_ODD.php';
}
/**
* @dataProvider providerIsOddArray
*/
public function testIsOddArray(array $expectedResult, string $values): void
{
$calculation = Calculation::getInstance();
$formula = "=ISODD({$values})";
$result = $calculation->_calculateFormulaValue($formula);
self::assertEquals($expectedResult, $result);
}
public function providerIsOddArray(): array
{
return [
'vector' => [
[[false, true, false, true, false]],
'{-2, -1, 0, 1, 2}',
],
];
}
}