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

16 lines
355 B
PHP

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