mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-09-26 07:08:12 +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.
24 lines
625 B
PHP
24 lines
625 B
PHP
<?php
|
|
|
|
namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\Financial;
|
|
|
|
use PhpOffice\PhpSpreadsheet\Calculation\Financial\Helpers;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class HelpersTest extends TestCase
|
|
{
|
|
/**
|
|
* @dataProvider providerDaysPerYear
|
|
*/
|
|
public function testDaysPerYear(mixed $expectedResult, mixed $year, mixed $basis): void
|
|
{
|
|
$result = Helpers::daysPerYear($year, $basis);
|
|
self::assertSame($expectedResult, $result);
|
|
}
|
|
|
|
public static function providerDaysPerYear(): array
|
|
{
|
|
return require 'tests/data/Calculation/Financial/DaysPerYear.php';
|
|
}
|
|
}
|