mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-08-30 12:07:56 +00:00
e41c4280f6
Start removing some of the deprecations, starting with the old Excel Function implementations.
26 lines
638 B
PHP
26 lines
638 B
PHP
<?php
|
|
|
|
namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\Financial;
|
|
|
|
use PhpOffice\PhpSpreadsheet\Calculation\Financial\CashFlow\Constant\Periodic;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class PvTest extends TestCase
|
|
{
|
|
/**
|
|
* @dataProvider providerPV
|
|
*
|
|
* @param mixed $expectedResult
|
|
*/
|
|
public function testPV($expectedResult, array $args = []): void
|
|
{
|
|
$result = Periodic::presentValue(...$args);
|
|
self::assertEqualsWithDelta($expectedResult, $result, 1E-8);
|
|
}
|
|
|
|
public function providerPV(): array
|
|
{
|
|
return require 'tests/data/Calculation/Financial/PV.php';
|
|
}
|
|
}
|