Failed Conditions
Push — develop ( 11b055...32a55a )
by Adrien
30:13
created

XlsxTest::testFreezePane()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 23
Code Lines 15

Duplication

Lines 23
Ratio 100 %

Importance

Changes 0
Metric Value
cc 1
eloc 15
c 0
b 0
f 0
nc 1
nop 0
dl 23
loc 23
rs 9.0856
1
<?php
2
3
namespace PhpOffice\PhpSpreadsheetTests\Reader;
4
5
use PhpOffice\PhpSpreadsheet\Reader\Xlsx;
6
use PHPUnit\Framework\TestCase;
7
8
class XlsxTest extends TestCase
9
{
10
    /**
11
     * Test load Xlsx file without cell reference.
12
     */
13
    public function testLoadXlsxWithoutCellReference()
14
    {
15
        $filename = './data/Reader/XLSX/without_cell_reference.xlsx';
16
        $reader = new Xlsx();
17
        $reader->load($filename);
18
    }
19
}
20