PhpSpreadsheet/tests/PhpSpreadsheetTests/Calculation/Functions/Financial/AccrintTest.php

32 lines
787 B
PHP
Raw Normal View History

<?php
namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\Financial;
use PhpOffice\PhpSpreadsheet\Calculation\Financial;
use PhpOffice\PhpSpreadsheet\Calculation\Functions;
use PHPUnit\Framework\TestCase;
class AccrintTest extends TestCase
{
2020-04-27 10:28:36 +00:00
protected function setUp(): void
{
Functions::setCompatibilityMode(Functions::COMPATIBILITY_EXCEL);
}
/**
* @dataProvider providerACCRINT
*
* @param mixed $expectedResult
*/
public function testACCRINT($expectedResult, ...$args)
{
$result = Financial::ACCRINT(...$args);
2020-04-27 10:28:36 +00:00
$this->assertEqualsWithDelta($expectedResult, $result, 1E-8);
}
public function providerACCRINT()
{
return require 'tests/data/Calculation/Financial/ACCRINT.php';
}
}