sagacity/inc/vendor/phpoffice/phpspreadsheet/tests/PhpSpreadsheetTests/Cell/DataTypeTest.php
Ryan Prather d52454d1bb Updates to 3rd party libraries
Add Dockerfile and specific docker-php.ini
2018-08-28 21:27:13 -04:00

18 lines
424 B
PHP

<?php
namespace PhpOffice\PhpSpreadsheetTests\Cell;
use PhpOffice\PhpSpreadsheet\Cell\DataType;
use PHPUnit\Framework\TestCase;
class DataTypeTest extends TestCase
{
public function testGetErrorCodes()
{
$result = DataType::getErrorCodes();
self::assertInternalType('array', $result);
self::assertGreaterThan(0, count($result));
self::assertArrayHasKey('#NULL!', $result);
}
}