PhpSpreadsheet/tests/PhpSpreadsheetTests/Calculation/Functions/Information/NameTest.php

16 lines
351 B
PHP

<?php
namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\Information;
use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError;
use PHPUnit\Framework\TestCase;
class NameTest extends TestCase
{
public function testNAME(): void
{
$result = ExcelError::NAME();
self::assertEquals('#NAME?', $result);
}
}