Files
PhpSpreadsheet/tests/PhpSpreadsheetTests/Calculation/Functions/Logical/IfErrorTest.php
T
Mark Baker dd74dd7fcf Let's start with some appeasements to phpstan, just to reduce the baseline (#1983)
* Let's start with some appeasements to phpstan, just to reduce the baseline
* Appeasements to phpstan, taking the number of reported errors down to just 61
2021-04-03 17:10:40 +02:00

34 lines
838 B
PHP

<?php
namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\Logical;
use PhpOffice\PhpSpreadsheet\Calculation\Functions;
use PhpOffice\PhpSpreadsheet\Calculation\Logical;
use PHPUnit\Framework\TestCase;
class IfErrorTest extends TestCase
{
protected function setUp(): void
{
Functions::setCompatibilityMode(Functions::COMPATIBILITY_EXCEL);
}
/**
* @dataProvider providerIFERROR
*
* @param mixed $expectedResult
* @param mixed $value
* @param mixed $return
*/
public function testIFERROR($expectedResult, $value, $return): void
{
$result = Logical::IFERROR($value, $return);
self::assertEquals($expectedResult, $result);
}
public function providerIFERROR()
{
return require 'tests/data/Calculation/Logical/IFERROR.php';
}
}