Files
PhpSpreadsheet/tests/PhpSpreadsheetTests/Calculation/Functions/Financial/NpvTest.php
T
Adrien Crivelli 1b05dfab8b Rector AddParamTypeBasedOnPHPUnitDataProviderRector
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.
2023-09-07 17:00:24 +08:00

20 lines
445 B
PHP

<?php
namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\Financial;
class NpvTest extends AllSetupTeardown
{
/**
* @dataProvider providerNPV
*/
public function testNPV(mixed $expectedResult, mixed ...$args): void
{
$this->runTestCase('NPV', $expectedResult, $args);
}
public static function providerNPV(): array
{
return require 'tests/data/Calculation/Financial/NPV.php';
}
}