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.4 KiB
PHP
55 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 IsTextTest extends TestCase
|
|
{
|
|
public function testIsTextNoArgument(): void
|
|
{
|
|
$result = Value::isText();
|
|
self::assertFalse($result);
|
|
}
|
|
|
|
/**
|
|
* @dataProvider providerIsText
|
|
*
|
|
* @param mixed $value
|
|
*/
|
|
public function testIsText(bool $expectedResult, $value): void
|
|
{
|
|
$result = Value::isText($value);
|
|
self::assertEquals($expectedResult, $result);
|
|
}
|
|
|
|
public function providerIsText(): array
|
|
{
|
|
return require 'tests/data/Calculation/Information/IS_TEXT.php';
|
|
}
|
|
|
|
/**
|
|
* @dataProvider providerIsTextArray
|
|
*/
|
|
public function testIsTextArray(array $expectedResult, string $values): void
|
|
{
|
|
$calculation = Calculation::getInstance();
|
|
|
|
$formula = "=ISTEXT({$values})";
|
|
$result = $calculation->_calculateFormulaValue($formula);
|
|
self::assertEquals($expectedResult, $result);
|
|
}
|
|
|
|
public function providerIsTextArray(): array
|
|
{
|
|
return [
|
|
'vector' => [
|
|
[[false, true, true, false, false]],
|
|
'{-2, "PHP", "123.456", false, 2.34}',
|
|
],
|
|
];
|
|
}
|
|
}
|