mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-09-08 17:16:25 +00:00
fe79f7b02c
* Fix Unintential Deprecated Calls in Tests - INFORMATION I think it's best to install these before PR #3166. There are no changes to source code, only to doc-blocks and to test members which continue to inadvertently use calls to deprecated functions. * Missed Some Deprecated Calls Fix them now.
55 lines
1.3 KiB
PHP
55 lines
1.3 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 IsBlankTest extends TestCase
|
|
{
|
|
public function testIsBlankNoArgument(): void
|
|
{
|
|
$result = Value::isBlank();
|
|
self::assertTrue($result);
|
|
}
|
|
|
|
/**
|
|
* @dataProvider providerIsBlank
|
|
*
|
|
* @param mixed $value
|
|
*/
|
|
public function testIsBlank(bool $expectedResult, $value): void
|
|
{
|
|
$result = Value::isBlank($value);
|
|
self::assertEquals($expectedResult, $result);
|
|
}
|
|
|
|
public function providerIsBlank(): array
|
|
{
|
|
return require 'tests/data/Calculation/Information/IS_BLANK.php';
|
|
}
|
|
|
|
/**
|
|
* @dataProvider providerIsBlankArray
|
|
*/
|
|
public function testIsBlankArray(array $expectedResult, string $values): void
|
|
{
|
|
$calculation = Calculation::getInstance();
|
|
|
|
$formula = "=ISBLANK({$values})";
|
|
$result = $calculation->_calculateFormulaValue($formula);
|
|
self::assertEquals($expectedResult, $result);
|
|
}
|
|
|
|
public function providerIsBlankArray(): array
|
|
{
|
|
return [
|
|
'vector' => [
|
|
[[false, true, false]],
|
|
'{12, NULL, ""}',
|
|
],
|
|
];
|
|
}
|
|
}
|