Files
PhpSpreadsheet/tests/PhpSpreadsheetTests/Calculation/Functions/Information/Div0Test.php
Mark Baker 0ee4d96576 Array-enable the ISFORMULA() function (#2610)
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
2022-02-20 19:32:13 +01:00

16 lines
352 B
PHP

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