 e868e58d20
			
		
	
	
		e868e58d20
		
			
		
	
	
	
	
		
			
			We now can do something like: ```sh ./vendor/bin/phpunit tests/PhpSpreadsheetTests/Reader/ ```
		
			
				
	
	
		
			35 lines
		
	
	
		
			886 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			886 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\Engineering;
 | |
| 
 | |
| use PhpOffice\PhpSpreadsheet\Calculation\Engineering;
 | |
| use PhpOffice\PhpSpreadsheet\Calculation\Functions;
 | |
| use PHPUnit\Framework\TestCase;
 | |
| 
 | |
| class ImaginaryTest extends TestCase
 | |
| {
 | |
|     const COMPLEX_PRECISION = 1E-8;
 | |
| 
 | |
|     protected function setUp(): void
 | |
|     {
 | |
|         Functions::setCompatibilityMode(Functions::COMPATIBILITY_EXCEL);
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @dataProvider providerIMAGINARY
 | |
|      *
 | |
|      * @param mixed $expectedResult
 | |
|      * @param mixed $value
 | |
|      */
 | |
|     public function testIMAGINARY($expectedResult, $value)
 | |
|     {
 | |
|         $result = Engineering::IMAGINARY($value);
 | |
|         $this->assertEqualsWithDelta($expectedResult, $result, self::COMPLEX_PRECISION);
 | |
|     }
 | |
| 
 | |
|     public function providerIMAGINARY()
 | |
|     {
 | |
|         return require 'tests/data/Calculation/Engineering/IMAGINARY.php';
 | |
|     }
 | |
| }
 |