diff --git a/tests/PhpSpreadsheetTests/Calculation/Functions/Statistical/CorrelTest.php b/tests/PhpSpreadsheetTests/Calculation/Functions/Statistical/CorrelTest.php index 52f773bc..960a4cfd 100644 --- a/tests/PhpSpreadsheetTests/Calculation/Functions/Statistical/CorrelTest.php +++ b/tests/PhpSpreadsheetTests/Calculation/Functions/Statistical/CorrelTest.php @@ -17,8 +17,10 @@ class CorrelTest extends TestCase * @dataProvider providerCORREL * * @param mixed $expectedResult + * @param mixed $xargs + * @param mixed $yargs */ - public function testCORREL($expectedResult, array $xargs, array $yargs): void + public function testCORREL($expectedResult, $xargs, $yargs): void { $result = Statistical::CORREL($xargs, $yargs); self::assertEqualsWithDelta($expectedResult, $result, 1E-12); diff --git a/tests/PhpSpreadsheetTests/Calculation/Functions/Statistical/KurtTest.php b/tests/PhpSpreadsheetTests/Calculation/Functions/Statistical/KurtTest.php new file mode 100644 index 00000000..b62aa026 --- /dev/null +++ b/tests/PhpSpreadsheetTests/Calculation/Functions/Statistical/KurtTest.php @@ -0,0 +1,25 @@ +