Completed
Push — develop ( 98b532...40efcd )
by Adrien
27:48
created

XlsxTest::testLoadXlsxWithoutCellReference()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 4
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 6
rs 9.4285
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 PHPUnit_Framework_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