PhpSpreadsheet/tests/PhpSpreadsheetTests/Calculation/Functions/Engineering/ErfTest.php

35 lines
875 B
PHP
Raw Normal View History

<?php
namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\Engineering;
use PhpOffice\PhpSpreadsheet\Calculation\Engineering;
use PhpOffice\PhpSpreadsheet\Calculation\Functions;
use PHPUnit\Framework\TestCase;
class ErfTest extends TestCase
{
const ERF_PRECISION = 1E-12;
2020-04-27 10:28:36 +00:00
protected function setUp(): void
{
Functions::setCompatibilityMode(Functions::COMPATIBILITY_EXCEL);
}
/**
* @dataProvider providerERF
*
* @param mixed $expectedResult
*/
public function testERF($expectedResult, ...$args)
{
$result = Engineering::ERF(...$args);
2020-04-27 10:28:36 +00:00
$this->assertEquals($expectedResult, $result);
$this->assertEqualsWithDelta($expectedResult, $result, self::ERF_PRECISION);
}
public function providerERF()
{
return require 'tests/data/Calculation/Engineering/ERF.php';
}
}