mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-08-24 23:28:21 +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
347 B
PHP
16 lines
347 B
PHP
<?php
|
|
|
|
namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\Information;
|
|
|
|
use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class RefTest extends TestCase
|
|
{
|
|
public function testREF(): void
|
|
{
|
|
$result = ExcelError::REF();
|
|
self::assertEquals('#REF!', $result);
|
|
}
|
|
}
|