 9b44cf3418
			
		
	
	
		9b44cf3418
		
			
		
	
	
	
	
		
			
			- Fix ISFORMULA() function to work with a cell reference to another worksheet
 - Added calculation engine support for the new functions that were added in MS Excel 2013 and MS Excel 2016
   - Text Functions
     - CONCAT()     Synonym for CONCATENATE()
     - NUMBERVALUE()  Converts text to a number, in a locale-independent way
     - UNICHAR()    Synonym for CHAR() in PHPSpreadsheet, which has always used UTF-8 internally
     - UNIORD()     Synonym for ORD() in PHPSpreadsheet, which has always used UTF-8 internally
     - TEXTJOIN()   Joins together two or more text strings, separated by a delimiter
   - Logical Functions
     - XOR()        Returns a logical Exclusive Or of all arguments
   - Date/Time Functions
     - ISOWEEKNUM()  Returns the ISO 8601 week number of the year for a given date
   - Lookup and Reference Functions
     - FORMULATEXT()  Returns a formula as a string
   - Engineering Functions
     - ERF.PRECISE()   Returns the error function integrated between 0 and a supplied limit
     - ERFC.PRECISE()  Synonym for ERFC
   - Math and Trig Functions
     - SEC()          Returns the secant of an angle
     - SECH()         Returns the hyperbolic secant of an angle
     - CSC()          Returns the cosecant of an angle
     - CSCH()         Returns the hyperbolic cosecant of an angle
     - COT()          Returns the cotangent of an angle
     - COTH()         Returns the hyperbolic cotangent of an angle
     - ACOT()         Returns the cotangent of an angle
     - ACOTH()        Returns the hyperbolic cotangent of an angle
  - Financial Functions
    - PDURATION()    Calculates the number of periods required for an investment to reach a specified value
    - RRI()          Calculates the interest rate required for an investment to grow to a specified future value
		
	
			
		
			
				
	
	
		
			124 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			124 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace PhpOffice\PhpSpreadsheetTests\Calculation;
 | |
| 
 | |
| use PhpOffice\PhpSpreadsheet\Calculation\Functions;
 | |
| use PhpOffice\PhpSpreadsheet\Calculation\Logical;
 | |
| use PHPUnit\Framework\TestCase;
 | |
| 
 | |
| class LogicalTest extends TestCase
 | |
| {
 | |
|     public function setUp()
 | |
|     {
 | |
|         Functions::setCompatibilityMode(Functions::COMPATIBILITY_EXCEL);
 | |
|     }
 | |
| 
 | |
|     public function testTRUE()
 | |
|     {
 | |
|         $result = Logical::TRUE();
 | |
|         self::assertTrue($result);
 | |
|     }
 | |
| 
 | |
|     public function testFALSE()
 | |
|     {
 | |
|         $result = Logical::FALSE();
 | |
|         self::assertFalse($result);
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @dataProvider providerAND
 | |
|      *
 | |
|      * @param mixed $expectedResult
 | |
|      */
 | |
|     public function testAND($expectedResult, ...$args)
 | |
|     {
 | |
|         $result = Logical::logicalAnd(...$args);
 | |
|         self::assertEquals($expectedResult, $result);
 | |
|     }
 | |
| 
 | |
|     public function providerAND()
 | |
|     {
 | |
|         return require 'data/Calculation/Logical/AND.php';
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @dataProvider providerOR
 | |
|      *
 | |
|      * @param mixed $expectedResult
 | |
|      */
 | |
|     public function testOR($expectedResult, ...$args)
 | |
|     {
 | |
|         $result = Logical::logicalOr(...$args);
 | |
|         self::assertEquals($expectedResult, $result);
 | |
|     }
 | |
| 
 | |
|     public function providerOR()
 | |
|     {
 | |
|         return require 'data/Calculation/Logical/OR.php';
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @dataProvider providerXOR
 | |
|      *
 | |
|      * @param mixed $expectedResult
 | |
|      */
 | |
|     public function testXOR($expectedResult, ...$args)
 | |
|     {
 | |
|         $result = Logical::logicalXor(...$args);
 | |
|         self::assertEquals($expectedResult, $result);
 | |
|     }
 | |
| 
 | |
|     public function providerXOR()
 | |
|     {
 | |
|         return require 'data/Calculation/Logical/XOR.php';
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @dataProvider providerNOT
 | |
|      *
 | |
|      * @param mixed $expectedResult
 | |
|      */
 | |
|     public function testNOT($expectedResult, ...$args)
 | |
|     {
 | |
|         $result = Logical::NOT(...$args);
 | |
|         self::assertEquals($expectedResult, $result);
 | |
|     }
 | |
| 
 | |
|     public function providerNOT()
 | |
|     {
 | |
|         return require 'data/Calculation/Logical/NOT.php';
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @dataProvider providerIF
 | |
|      *
 | |
|      * @param mixed $expectedResult
 | |
|      */
 | |
|     public function testIF($expectedResult, ...$args)
 | |
|     {
 | |
|         $result = Logical::statementIf(...$args);
 | |
|         self::assertEquals($expectedResult, $result);
 | |
|     }
 | |
| 
 | |
|     public function providerIF()
 | |
|     {
 | |
|         return require 'data/Calculation/Logical/IF.php';
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @dataProvider providerIFERROR
 | |
|      *
 | |
|      * @param mixed $expectedResult
 | |
|      */
 | |
|     public function testIFERROR($expectedResult, ...$args)
 | |
|     {
 | |
|         $result = Logical::IFERROR(...$args);
 | |
|         self::assertEquals($expectedResult, $result);
 | |
|     }
 | |
| 
 | |
|     public function providerIFERROR()
 | |
|     {
 | |
|         return require 'data/Calculation/Logical/IFERROR.php';
 | |
|     }
 | |
| }
 |