mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-09-06 07:29:05 +00:00
fe79f7b02c
* Fix Unintential Deprecated Calls in Tests - INFORMATION I think it's best to install these before PR #3166. There are no changes to source code, only to doc-blocks and to test members which continue to inadvertently use calls to deprecated functions. * Missed Some Deprecated Calls Fix them now.
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);
|
|
}
|
|
}
|