 aed27a0bed
			
		
	
	
		aed27a0bed
		
	
	
	
	
		
			
			Use the `PHPUnit\Framework\TestCase` notation instead of `PHPUnit_Framework_TestCase` while extending our TestCases. This will help us migrate to PHPUnit 6, that [no longer support snake case class names](https://github.com/sebastianbergmann/phpunit/blob/master/ChangeLog-6.0.md#changed-1).
		
			
				
	
	
		
			17 lines
		
	
	
		
			395 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			395 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace PhpOffice\PhpSpreadsheetTests\Reader;
 | |
| 
 | |
| use PhpOffice\PhpSpreadsheet\Reader\Html;
 | |
| use PHPUnit\Framework\TestCase;
 | |
| 
 | |
| class HtmlTest extends TestCase
 | |
| {
 | |
|     public function testCsvWithAngleBracket()
 | |
|     {
 | |
|         $filename = __DIR__ . '/../../data/Reader/HTML/csv_with_angle_bracket.csv';
 | |
|         $reader = new Html();
 | |
|         self::assertFalse($reader->canRead($filename));
 | |
|     }
 | |
| }
 |