mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-09-15 04:26:25 +00:00
26 lines
774 B
PHP
26 lines
774 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace PhpOffice\PhpSpreadsheetTests\Reader\Xlsx;
|
|
|
|
use PhpOffice\PhpSpreadsheet\Reader\Xlsx;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class Issue2778Test extends TestCase
|
|
{
|
|
private static string $testbook = 'tests/data/Reader/XLSX/issue.2778.xlsx';
|
|
|
|
public function testIssue2778(): void
|
|
{
|
|
$filename = self::$testbook;
|
|
$reader = new Xlsx();
|
|
$spreadsheet = $reader->load($filename);
|
|
$sheet = $spreadsheet->getActiveSheet();
|
|
self::assertSame(6, $sheet->getCell('D1')->getCalculatedValue());
|
|
self::assertSame(63, $sheet->getCell('F1')->getCalculatedValue());
|
|
self::assertSame(10, $sheet->getCell('C10')->getCalculatedValue());
|
|
$spreadsheet->disconnectWorksheets();
|
|
}
|
|
}
|