runTestCases('GAMMALN', $expectedResult, ...$args); } public static function providerGAMMALN(): array { return require 'tests/data/Calculation/Statistical/GAMMALN.php'; } #[\PHPUnit\Framework\Attributes\DataProvider('providerGammaLnArray')] public function testGammaLnArray(array $expectedResult, string $values): void { $calculation = Calculation::getInstance(); $formula = "=GAMMALN({$values})"; $result = $calculation->calculateFormula($formula); self::assertEqualsWithDelta($expectedResult, $result, 1.0e-14); } public static function providerGammaLnArray(): array { return [ 'matrix' => [ [['#NUM!', 1.5240638224307844], [0.20328095143129537, 2.8813232759012449]], '{-1.5, 0.2; 0.75, 4.8}', ], ]; } }