Files
2025-05-12 22:59:34 -07:00

23 lines
528 B
PHP

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