mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-08-25 04:18:18 +00:00
1b05dfab8b
And quite a bit more manual changes. The idea is that typing of our tests can be a bit more loose, so we assume PHPDoc is mostly correct. If that happens to be wrong, it should be caught by the tests themselves.
62 lines
1.9 KiB
PHP
62 lines
1.9 KiB
PHP
<?php
|
|
|
|
namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\TextData;
|
|
|
|
use PhpOffice\PhpSpreadsheet\Calculation\Calculation;
|
|
|
|
class TextTest extends AllSetupTeardown
|
|
{
|
|
/**
|
|
* @dataProvider providerTEXT
|
|
*/
|
|
public function testTEXT(mixed $expectedResult, mixed $value = 'omitted', mixed $format = 'omitted'): void
|
|
{
|
|
$this->mightHaveException($expectedResult);
|
|
$sheet = $this->getSheet();
|
|
if ($value === 'omitted') {
|
|
$sheet->getCell('B1')->setValue('=TEXT()');
|
|
} elseif ($format === 'omitted') {
|
|
$this->setCell('A1', $value);
|
|
$sheet->getCell('B1')->setValue('=TEXT(A1)');
|
|
} else {
|
|
$this->setCell('A1', $value);
|
|
$this->setCell('A2', $format);
|
|
$sheet->getCell('B1')->setValue('=TEXT(A1, A2)');
|
|
}
|
|
$result = $sheet->getCell('B1')->getCalculatedValue();
|
|
self::assertEquals($expectedResult, $result);
|
|
}
|
|
|
|
public static function providerTEXT(): array
|
|
{
|
|
return require 'tests/data/Calculation/TextData/TEXT.php';
|
|
}
|
|
|
|
/**
|
|
* @dataProvider providerTextArray
|
|
*/
|
|
public function testTextArray(array $expectedResult, string $argument1, string $argument2): void
|
|
{
|
|
$calculation = Calculation::getInstance();
|
|
|
|
$formula = "=TEXT({$argument1}, {$argument2})";
|
|
$result = $calculation->_calculateFormulaValue($formula);
|
|
self::assertEqualsWithDelta($expectedResult, $result, 1.0e-14);
|
|
}
|
|
|
|
public static function providerTextArray(): array
|
|
{
|
|
return [
|
|
'row vector' => [[['123.75%', '1 19/80']], '1.2375', '{"0.00%", "0 ??/???"}'],
|
|
'matrix vector' => [
|
|
[
|
|
['$ -1,234.57', '(1,234.57)'],
|
|
['$ 9,876.54', '9,876.54'],
|
|
],
|
|
'{-1234.5678; 9876.5432}',
|
|
'{"$ #,##0.00", "#,##0.00;(#,##0.00)"}',
|
|
],
|
|
];
|
|
}
|
|
}
|