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\Functions;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class IsTextTest extends TestCase
|
|
{
|
|
public function testIsTextNoArgument(): void
|
|
{
|
|
$result = Functions::isText();
|
|
self::assertFalse($result);
|
|
}
|
|
|
|
/**
|
|
* @dataProvider providerIsText
|
|
*
|
|
* @param mixed $value
|
|
*/
|
|
public function testIsText(bool $expectedResult, $value): void
|
|
{
|
|
$result = Functions::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}',
|
|
],
|
|
];
|
|
}
|
|
}
|