mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-09-15 04:26:25 +00:00
ec773bbed9
This will be the biggest of these changes. It takes care of all of the remaining problems in tests. I will handle the problems in src more slowly.
21 lines
467 B
PHP
21 lines
467 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace PhpOffice\PhpSpreadsheetTests\Reader\Xlsx;
|
|
|
|
use PhpOffice\PhpSpreadsheet\Reader\Xlsx;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class AbsolutePathTest extends TestCase
|
|
{
|
|
public static function testPr1869(): void
|
|
{
|
|
$xlsxFile = 'tests/data/Reader/XLSX/pr1769e.xlsx';
|
|
$reader = new Xlsx();
|
|
$result = $reader->listWorksheetInfo($xlsxFile);
|
|
|
|
self::assertEquals(3, $result[0]['totalRows']);
|
|
}
|
|
}
|