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

34 lines
849 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 BesselYTest extends TestCase
{
const BESSEL_PRECISION = 1E-8;
2020-04-27 10:28:36 +00:00
protected function setUp(): void
{
Functions::setCompatibilityMode(Functions::COMPATIBILITY_EXCEL);
}
/**
* @dataProvider providerBESSELY
*
* @param mixed $expectedResult
*/
public function testBESSELY($expectedResult, ...$args)
{
$result = Engineering::BESSELY(...$args);
2020-04-27 10:28:36 +00:00
$this->assertEqualsWithDelta($expectedResult, $result, self::BESSEL_PRECISION);
}
public function providerBESSELY()
{
return require 'tests/data/Calculation/Engineering/BESSELY.php';
}
}