mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-08-25 10:38: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
337 B
PHP
16 lines
337 B
PHP
<?php
|
|
|
|
namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\Information;
|
|
|
|
use PhpOffice\PhpSpreadsheet\Calculation\Functions;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class NullTest extends TestCase
|
|
{
|
|
public function testNULL(): void
|
|
{
|
|
$result = Functions::null();
|
|
self::assertEquals('#NULL!', $result);
|
|
}
|
|
}
|