PhpSpreadsheet/tests/PhpSpreadsheetTests/Calculation/Functions/Statistical/GammaLnTest.php
Mark Baker 26e87c45ae
Test refactoring (#1112)
* Merge branch 'master' of C:\Projects\PHPOffice\PHPSpreadsheet\develop with conflicts.

* Argument fix

* Text Test functions refactored into individual test files

* Codestyle (line at eof)

* docblocks
2019-07-27 14:28:16 +02:00

33 lines
793 B
PHP

<?php
namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\Statistical;
use PhpOffice\PhpSpreadsheet\Calculation\Functions;
use PhpOffice\PhpSpreadsheet\Calculation\Statistical;
use PHPUnit\Framework\TestCase;
class GammaLnTest extends TestCase
{
public function setUp()
{
Functions::setCompatibilityMode(Functions::COMPATIBILITY_EXCEL);
}
/**
* @dataProvider providerGAMMALN
*
* @param mixed $expectedResult
* @param $value
*/
public function testGAMMALN($expectedResult, $value)
{
$result = Statistical::GAMMALN($value);
$this->assertEquals($expectedResult, $result, '', 1E-12);
}
public function providerGAMMALN()
{
return require 'data/Calculation/Statistical/GAMMALN.php';
}
}