Files
PhpSpreadsheet/tests/PhpSpreadsheetTests/Calculation/Functions/Information/RefTest.php
Mark Baker 0ee4d96576 Array-enable the ISFORMULA() function (#2610)
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
2022-02-20 19:32:13 +01:00

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);
}
}