Files
PhpSpreadsheet/tests/PhpSpreadsheetTests/Calculation/Functions/Financial/XNpvTest.php
T
oleibman a884013d00 Fix Unintential Deprecated Calls in Tests - FINANCIAL (#3180)
* Fix Unintential Deprecated Calls in Tests - FINANCIAL

I think it's best to install these before PR #3166. There are no changes to source code, only to doc-blocks and to test members which continue to inadvertently use calls to deprecated functions.

* Change Tests to Run in Spreadsheet Context

Found and fixed some problems with how MIRR handles errors.
2022-11-25 07:19:19 -08:00

69 lines
2.2 KiB
PHP

<?php
namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\Financial;
class XNpvTest extends AllSetupTeardown
{
/**
* @dataProvider providerXNPV
*
* @param mixed $expectedResult
* @param mixed $rate
* @param mixed $values
* @param mixed $dates
*/
public function testXNPV($expectedResult, $rate = null, $values = null, $dates = null): void
{
$this->mightHaveException($expectedResult);
$sheet = $this->getSheet();
$formula = '=XNPV(';
if ($rate !== null) {
$this->setCell('C1', $rate);
$formula .= 'C1,';
if ($values !== null) {
if (is_array($values)) {
$row = 0;
foreach ($values as $value) {
++$row;
$sheet->getCell("A$row")->setValue($value);
}
$formula .= "A1:A$row";
} else {
$sheet->getCell('A1')->setValue($values);
$formula .= 'A1';
}
if ($dates !== null) {
if (is_array($dates)) {
$row = 0;
foreach ($dates as $date) {
++$row;
$sheet->getCell("B$row")->setValue($date);
}
$formula .= ",B1:B$row";
} else {
$sheet->getCell('B1')->setValue($dates);
$formula .= ',B1';
}
}
}
}
$formula .= ')';
$sheet->getCell('D1')->setValue($formula);
$result = $sheet->getCell('D1')->getCalculatedValue();
if (is_numeric($result) && is_numeric($expectedResult)) {
if ($expectedResult != 0) {
$frac = $result / $expectedResult;
if ($frac > 0.999999 && $frac < 1.000001) {
$result = $expectedResult;
}
}
}
self::assertEquals($expectedResult, $result);
}
public function providerXNPV(): array
{
return require 'tests/data/Calculation/Financial/XNPV.php';
}
}