Files
PhpSpreadsheet/tests/PhpSpreadsheetTests/Calculation/Functions/Information/IsLogicalTest.php
T
Adrien Crivelli 1b05dfab8b Rector AddParamTypeBasedOnPHPUnitDataProviderRector
And quite a bit more manual changes. The idea is that typing of our
tests can be a bit more loose, so we assume PHPDoc is mostly correct. If
that happens to be wrong, it should be caught by the tests themselves.
2023-09-07 17:00:24 +08:00

53 lines
1.4 KiB
PHP

<?php
namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\Information;
use PhpOffice\PhpSpreadsheet\Calculation\Calculation;
use PhpOffice\PhpSpreadsheet\Calculation\Information\Value;
use PHPUnit\Framework\TestCase;
class IsLogicalTest extends TestCase
{
public function testIsLogicalNoArgument(): void
{
$result = Value::isLogical();
self::assertFalse($result);
}
/**
* @dataProvider providerIsLogical
*/
public function testIsLogical(bool $expectedResult, mixed $value): void
{
$result = Value::isLogical($value);
self::assertEquals($expectedResult, $result);
}
public static function providerIsLogical(): array
{
return require 'tests/data/Calculation/Information/IS_LOGICAL.php';
}
/**
* @dataProvider providerIsLogicalArray
*/
public function testIsLogicalArray(array $expectedResult, string $values): void
{
$calculation = Calculation::getInstance();
$formula = "=ISLOGICAL({$values})";
$result = $calculation->_calculateFormulaValue($formula);
self::assertEquals($expectedResult, $result);
}
public static function providerIsLogicalArray(): array
{
return [
'vector' => [
[[true, false, false, false, true, false]],
'{true, -1, null, 1, false, "FALSE"}',
],
];
}
}