PhpSpreadsheet/tests/PhpSpreadsheetTests/Calculation/Functions/MathTrig/IntTest.php

33 lines
761 B
PHP
Raw Normal View History

<?php
namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\MathTrig;
use PhpOffice\PhpSpreadsheet\Calculation\Functions;
use PhpOffice\PhpSpreadsheet\Calculation\MathTrig;
use PHPUnit\Framework\TestCase;
class IntTest extends TestCase
{
2020-04-27 10:28:36 +00:00
protected function setUp(): void
{
Functions::setCompatibilityMode(Functions::COMPATIBILITY_EXCEL);
}
/**
* @dataProvider providerINT
*
* @param mixed $expectedResult
* @param $value
*/
public function testINT($expectedResult, $value)
{
$result = MathTrig::INT($value);
$this->assertEquals($expectedResult, $result);
}
public function providerINT()
{
return require 'tests/data/Calculation/MathTrig/INT.php';
}
}