2020-02-06 07:53:25 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\MathTrig;
|
|
|
|
|
|
|
|
use PhpOffice\PhpSpreadsheet\Calculation\Functions;
|
|
|
|
use PhpOffice\PhpSpreadsheet\Calculation\MathTrig;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
|
|
|
|
class FloorMathTest extends TestCase
|
|
|
|
{
|
2020-04-27 10:28:36 +00:00
|
|
|
protected function setUp(): void
|
2020-02-06 07:53:25 +00:00
|
|
|
{
|
|
|
|
Functions::setCompatibilityMode(Functions::COMPATIBILITY_EXCEL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider providerFLOORMATH
|
|
|
|
*
|
|
|
|
* @param mixed $expectedResult
|
|
|
|
*/
|
|
|
|
public function testFLOORMATH($expectedResult, ...$args)
|
|
|
|
{
|
|
|
|
$result = MathTrig::FLOORMATH(...$args);
|
2020-04-27 10:28:36 +00:00
|
|
|
$this->assertEqualsWithDelta($expectedResult, $result, 1E-12);
|
2020-02-06 07:53:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function providerFLOORMATH()
|
|
|
|
{
|
2020-05-17 09:35:55 +00:00
|
|
|
return require 'tests/data/Calculation/MathTrig/FLOORMATH.php';
|
2020-02-06 07:53:25 +00:00
|
|
|
}
|
|
|
|
}
|