aed27a0bed
Use the `PHPUnit\Framework\TestCase` notation instead of `PHPUnit_Framework_TestCase` while extending our TestCases. This will help us migrate to PHPUnit 6, that [no longer support snake case class names](https://github.com/sebastianbergmann/phpunit/blob/master/ChangeLog-6.0.md#changed-1).
20 lines
435 B
PHP
20 lines
435 B
PHP
<?php
|
|
|
|
namespace PhpOffice\PhpSpreadsheetTests\Reader;
|
|
|
|
use PhpOffice\PhpSpreadsheet\Reader\Xlsx;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class XlsxTest extends TestCase
|
|
{
|
|
/**
|
|
* Test load Xlsx file without cell reference.
|
|
*/
|
|
public function testLoadXlsxWithoutCellReference()
|
|
{
|
|
$filename = './data/Reader/XLSX/without_cell_reference.xlsx';
|
|
$reader = new Xlsx();
|
|
$reader->load($filename);
|
|
}
|
|
}
|