Files
2022-09-26 16:20:11 +02:00

32 lines
803 B
PHP

<?php
namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\Financial;
use PhpOffice\PhpSpreadsheet\Calculation\Financial\Depreciation;
use PhpOffice\PhpSpreadsheet\Calculation\Functions;
use PHPUnit\Framework\TestCase;
class SlnTest extends TestCase
{
protected function setUp(): void
{
Functions::setCompatibilityMode(Functions::COMPATIBILITY_EXCEL);
}
/**
* @dataProvider providerSLN
*
* @param mixed $expectedResult
*/
public function testSLN($expectedResult, array $args): void
{
$result = Depreciation::straightLine(...$args);
self::assertEqualsWithDelta($expectedResult, $result, 1E-8);
}
public function providerSLN(): array
{
return require 'tests/data/Calculation/Financial/SLN.php';
}
}