mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-08-27 10:30:02 +00:00
e41c4280f6
Start removing some of the deprecations, starting with the old Excel Function implementations.
26 lines
613 B
PHP
26 lines
613 B
PHP
<?php
|
|
|
|
namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\Statistical;
|
|
|
|
use PhpOffice\PhpSpreadsheet\Calculation\Statistical\Maximum;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class MaxTest extends TestCase
|
|
{
|
|
/**
|
|
* @dataProvider providerMAX
|
|
*
|
|
* @param mixed $expectedResult
|
|
*/
|
|
public function testMAX($expectedResult, ...$args): void
|
|
{
|
|
$result = Maximum::max(...$args);
|
|
self::assertEqualsWithDelta($expectedResult, $result, 1E-12);
|
|
}
|
|
|
|
public function providerMAX(): array
|
|
{
|
|
return require 'tests/data/Calculation/Statistical/MAX.php';
|
|
}
|
|
}
|