mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-09-01 13:08:50 +00:00
70b4ecd4d3
They aren't quite interchangeable. Both are used in the test suite, with no indication of why one or the other. I think we'd be best off being consistent. Based on the names, I think `_calculateFormulaValue` was intended as a private, or at least internal, method, so favor `calculateFormula`. I do not intend to rename or re-categorize `_calculateFormulaValue`, just remove its usage when it isn't clearly warranted.
52 lines
1.4 KiB
PHP
52 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\ErrorValue;
|
|
use PHPUnit\Framework\Attributes\DataProvider;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class IsNaTest extends TestCase
|
|
{
|
|
public function testIsNaNoArgument(): void
|
|
{
|
|
$result = ErrorValue::isNa();
|
|
self::assertFalse($result);
|
|
}
|
|
|
|
#[DataProvider('providerIsNa')]
|
|
public function testIsNa(bool $expectedResult, mixed $value): void
|
|
{
|
|
$result = ErrorValue::isNa($value);
|
|
self::assertEquals($expectedResult, $result);
|
|
}
|
|
|
|
public static function providerIsNa(): array
|
|
{
|
|
return require 'tests/data/Calculation/Information/IS_NA.php';
|
|
}
|
|
|
|
#[DataProvider('providerIsNaArray')]
|
|
public function testIsNaArray(array $expectedResult, string $values): void
|
|
{
|
|
$calculation = Calculation::getInstance();
|
|
|
|
$formula = "=ISNA({$values})";
|
|
$result = $calculation->calculateFormula($formula);
|
|
self::assertSame($expectedResult, $result);
|
|
}
|
|
|
|
public static function providerIsNaArray(): array
|
|
{
|
|
return [
|
|
'vector' => [
|
|
[[false, false, true, false, false, false]],
|
|
'{5/0, "#REF!", "#N/A", 1.2, TRUE, "PHP"}',
|
|
],
|
|
];
|
|
}
|
|
}
|