mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-08-31 12:40:00 +00:00
e41c4280f6
Start removing some of the deprecations, starting with the old Excel Function implementations.
16 lines
351 B
PHP
16 lines
351 B
PHP
<?php
|
|
|
|
namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\Information;
|
|
|
|
use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class NullTest extends TestCase
|
|
{
|
|
public function testNULL(): void
|
|
{
|
|
$result = ExcelError::null();
|
|
self::assertEquals('#NULL!', $result);
|
|
}
|
|
}
|