PhpSpreadsheet/tests/PhpSpreadsheetTests/Calculation/Functions/Statistical/BinomDistRangeTest.php

61 lines
1.7 KiB
PHP

<?php
namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\Statistical;
use PhpOffice\PhpSpreadsheet\Calculation\Calculation;
use PhpOffice\PhpSpreadsheet\Calculation\Functions;
use PhpOffice\PhpSpreadsheet\Calculation\Statistical;
use PHPUnit\Framework\TestCase;
class BinomDistRangeTest extends TestCase
{
protected function setUp(): void
{
Functions::setCompatibilityMode(Functions::COMPATIBILITY_EXCEL);
}
/**
* @dataProvider providerBINOMDISTRANGE
*
* @param mixed $expectedResult
*/
public function testBINOMDISTRANGE($expectedResult, ...$args): void
{
$result = Statistical\Distributions\Binomial::range(...$args);
self::assertEqualsWithDelta($expectedResult, $result, 1E-12);
}
public function providerBINOMDISTRANGE(): array
{
return require 'tests/data/Calculation/Statistical/BINOMDISTRANGE.php';
}
/**
* @dataProvider providerBinomDistRangeArray
*/
public function testBinomDistRangeArray(
array $expectedResult,
string $trials,
string $probabilities,
string $successes
): void {
$calculation = Calculation::getInstance();
$formula = "=BINOM.DIST.RANGE({$trials}, {$probabilities}, {$successes})";
$result = $calculation->_calculateFormulaValue($formula);
self::assertEqualsWithDelta($expectedResult, $result, 1.0e-14);
}
public function providerBinomDistRangeArray(): array
{
return [
'row/column vectors' => [
[[0.17303466796875, 0.01153564453125], [0.258103609085083, 0.1032414436340332]],
'{7; 12}',
'0.25',
'{3, 5}',
],
];
}
}