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

XlsxTest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 12
rs 10
wmc 1
lcom 0
cbo 2

1 Method

Rating   Name   Duplication   Size   Complexity  
A testLoadXlsxWithoutCellReference() 0 6 1
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