| 123456789101112131415161718192021222324252627282930313233 |
- <?php
- namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\Logical;
- use PhpOffice\PhpSpreadsheet\Calculation\Logical;
- use PHPUnit\Framework\TestCase;
- class IfTest extends TestCase
- {
- /**
- * @dataProvider providerIF
- *
- * @param mixed $expectedResult
- */
- public function testIF($expectedResult, ...$args): void
- {
- if (count($args) === 0) {
- $result = Logical::statementIf();
- } elseif (count($args) === 1) {
- $result = Logical::statementIf($args[0]);
- } elseif (count($args) === 2) {
- $result = Logical::statementIf($args[0], $args[1]);
- } else {
- $result = Logical::statementIf($args[0], $args[1], $args[2]);
- }
- self::assertEquals($expectedResult, $result);
- }
- public function providerIF(): array
- {
- return require 'tests/data/Calculation/Logical/IF.php';
- }
- }
|