mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-08-30 03:59:11 +00:00
1b05dfab8b
And quite a bit more manual changes. The idea is that typing of our tests can be a bit more loose, so we assume PHPDoc is mostly correct. If that happens to be wrong, it should be caught by the tests themselves.
21 lines
567 B
PHP
21 lines
567 B
PHP
<?php
|
|
|
|
namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\Statistical;
|
|
|
|
// TODO There are some commented out cases which don't return correct value
|
|
class CountIfsTest extends AllSetupTeardown
|
|
{
|
|
/**
|
|
* @dataProvider providerCOUNTIFS
|
|
*/
|
|
public function testCOUNTIFS(mixed $expectedResult, mixed ...$args): void
|
|
{
|
|
$this->runTestCaseNoBracket('COUNTIFS', $expectedResult, ...$args);
|
|
}
|
|
|
|
public static function providerCOUNTIFS(): array
|
|
{
|
|
return require 'tests/data/Calculation/Statistical/COUNTIFS.php';
|
|
}
|
|
}
|