mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-08-25 03:38:16 +00:00
0ee4d96576
Implement Array-enabled for ERROR.TYPE() function Extract ERROR.TYPE() function tests into separate test file Extract error function tests into separate test files And thus complete the implemented Information functions
16 lines
355 B
PHP
16 lines
355 B
PHP
<?php
|
|
|
|
namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\Information;
|
|
|
|
use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class ValueTest extends TestCase
|
|
{
|
|
public function testVALUE(): void
|
|
{
|
|
$result = ExcelError::VALUE();
|
|
self::assertEquals('#VALUE!', $result);
|
|
}
|
|
}
|