Files
MarkBaker e41c4280f6 Initial creation of the version 2.0 Development branch
Start removing some of the deprecations, starting with the old Excel Function implementations.
2022-04-25 10:30:45 +02:00

34 lines
884 B
PHP

<?php
namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\Financial;
use PhpOffice\PhpSpreadsheet\Calculation\Financial\InterestRate;
use PhpOffice\PhpSpreadsheet\Calculation\Functions;
use PHPUnit\Framework\TestCase;
class NominalTest extends TestCase
{
protected function setUp(): void
{
Functions::setCompatibilityMode(Functions::COMPATIBILITY_EXCEL);
}
/**
* @dataProvider providerNOMINAL
*
* @param mixed $expectedResult
* @param mixed $rate
* @param mixed $periods
*/
public function testNOMINAL($expectedResult, $rate, $periods): void
{
$result = InterestRate::nominal($rate, $periods);
self::assertEqualsWithDelta($expectedResult, $result, 1E-8);
}
public function providerNOMINAL(): array
{
return require 'tests/data/Calculation/Financial/NOMINAL.php';
}
}