Files
oleibman 5a9055ca6a Phpstan Level 10 (Final)
Fix all of Statistical. We can now use Level 10 going forward.
2025-05-22 17:48:30 -07:00

23 lines
609 B
PHP

<?php
declare(strict_types=1);
namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\Statistical;
use PHPUnit\Framework\Attributes\DataProvider;
class TrimMeanTest extends AllSetupTeardown
{
/** @param mixed[] $args */
#[DataProvider('providerTRIMMEAN')]
public function testTRIMMEAN(mixed $expectedResult, array $args, mixed $percentage): void
{
$this->runTestCaseReference('TRIMMEAN', $expectedResult, $args, $percentage);
}
public static function providerTRIMMEAN(): array
{
return require 'tests/data/Calculation/Statistical/TRIMMEAN.php';
}
}