 2abe56b946
			
		
	
	
		2abe56b946
		
	
	
	
	
		
			
			When describing a cell, the cell reference (r="A1") is optional. When not present, we should just increment the index of the last processed row. Fixes #201 Closes #225
		
			
				
	
	
		
			20 lines
		
	
	
		
			453 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			453 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace PhpOffice\PhpSpreadsheetTests\Reader;
 | |
| 
 | |
| use PhpOffice\PhpSpreadsheet\Reader\Xlsx;
 | |
| use PHPUnit_Framework_TestCase;
 | |
| 
 | |
| class XLSXTest extends PHPUnit_Framework_TestCase
 | |
| {
 | |
|     /**
 | |
|      * Test load Xlsx file without cell reference.
 | |
|      */
 | |
|     public function testLoadXlsxWithoutCellReference()
 | |
|     {
 | |
|         $filename = './data/Reader/XLSX/without_cell_reference.xlsx';
 | |
|         $reader = new Xlsx();
 | |
|         $reader->load($filename);
 | |
|     }
 | |
| }
 |