mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-08-25 16:08:19 +00:00
ec4098c8fd
While we might never be able to have 100% of our code strict, we can at the very least do it for all of our tests. This ensures that our tests are using our API with the types as intended by the test author, and not silently be cast to what our API requires.
56 lines
1.4 KiB
PHP
56 lines
1.4 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\Information;
|
|
|
|
use PhpOffice\PhpSpreadsheet\Calculation\Calculation;
|
|
use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError;
|
|
use PhpOffice\PhpSpreadsheet\Calculation\Information\Value;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class IsEvenTest extends TestCase
|
|
{
|
|
public function testIsEvenNoArgument(): void
|
|
{
|
|
$result = Value::isEven();
|
|
self::assertSame(ExcelError::NAME(), $result);
|
|
}
|
|
|
|
/**
|
|
* @dataProvider providerIsEven
|
|
*/
|
|
public function testIsEven(bool|string $expectedResult, mixed $value): void
|
|
{
|
|
$result = Value::isEven($value);
|
|
self::assertEquals($expectedResult, $result);
|
|
}
|
|
|
|
public static function providerIsEven(): array
|
|
{
|
|
return require 'tests/data/Calculation/Information/IS_EVEN.php';
|
|
}
|
|
|
|
/**
|
|
* @dataProvider providerIsEvenArray
|
|
*/
|
|
public function testIsEvenArray(array $expectedResult, string $values): void
|
|
{
|
|
$calculation = Calculation::getInstance();
|
|
|
|
$formula = "=ISEVEN({$values})";
|
|
$result = $calculation->_calculateFormulaValue($formula);
|
|
self::assertEquals($expectedResult, $result);
|
|
}
|
|
|
|
public static function providerIsEvenArray(): array
|
|
{
|
|
return [
|
|
'vector' => [
|
|
[[true, false, true, false, true]],
|
|
'{-2, -1, 0, 1, 2}',
|
|
],
|
|
];
|
|
}
|
|
}
|