mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-09-25 18:53:14 +00:00
1b05dfab8b
And quite a bit more manual changes. The idea is that typing of our tests can be a bit more loose, so we assume PHPDoc is mostly correct. If that happens to be wrong, it should be caught by the tests themselves.
20 lines
469 B
PHP
20 lines
469 B
PHP
<?php
|
|
|
|
namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\Financial;
|
|
|
|
class TBillEqTest extends AllSetupTeardown
|
|
{
|
|
/**
|
|
* @dataProvider providerTBILLEQ
|
|
*/
|
|
public function testTBILLEQ(mixed $expectedResult, mixed ...$args): void
|
|
{
|
|
$this->runTestCase('TBILLEQ', $expectedResult, $args);
|
|
}
|
|
|
|
public static function providerTBILLEQ(): array
|
|
{
|
|
return require 'tests/data/Calculation/Financial/TBILLEQ.php';
|
|
}
|
|
}
|