<?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 { protected function setUp(): void { Functions::setCompatibilityMode(Functions::COMPATIBILITY_EXCEL); } /** * @dataProvider providerACCRINT * * @param mixed $expectedResult */ public function testACCRINT($expectedResult, ...$args): void { $result = Financial::ACCRINT(...$args); self::assertEqualsWithDelta($expectedResult, $result, 1E-8); } public function providerACCRINT() { return require 'tests/data/Calculation/Financial/ACCRINT.php'; } }