38 lines
1.0 KiB
PHP
38 lines
1.0 KiB
PHP
<?php
|
|
|
|
namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\DateTime;
|
|
|
|
use PhpOffice\PhpSpreadsheet\Calculation\DateTime;
|
|
use PhpOffice\PhpSpreadsheet\Calculation\Functions;
|
|
use PhpOffice\PhpSpreadsheet\Shared\Date;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class DateDifTest extends TestCase
|
|
{
|
|
protected function setUp(): void
|
|
{
|
|
Functions::setCompatibilityMode(Functions::COMPATIBILITY_EXCEL);
|
|
Functions::setReturnDateType(Functions::RETURNDATE_EXCEL);
|
|
Date::setExcelCalendar(Date::CALENDAR_WINDOWS_1900);
|
|
}
|
|
|
|
/**
|
|
* @dataProvider providerDATEDIF
|
|
*
|
|
* @param mixed $expectedResult
|
|
* @param $startDate
|
|
* @param $endDate
|
|
* @param $unit
|
|
*/
|
|
public function testDATEDIF($expectedResult, $startDate, $endDate, $unit)
|
|
{
|
|
$result = DateTime::DATEDIF($startDate, $endDate, $unit);
|
|
$this->assertEqualsWithDelta($expectedResult, $result, 1E-8);
|
|
}
|
|
|
|
public function providerDATEDIF()
|
|
{
|
|
return require 'tests/data/Calculation/DateTime/DATEDIF.php';
|
|
}
|
|
}
|