36 lines
993 B
PHP
36 lines
993 B
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 SecondTest extends TestCase
|
|
{
|
|
protected function setUp(): void
|
|
{
|
|
Functions::setCompatibilityMode(Functions::COMPATIBILITY_EXCEL);
|
|
Functions::setReturnDateType(Functions::RETURNDATE_EXCEL);
|
|
Date::setExcelCalendar(Date::CALENDAR_WINDOWS_1900);
|
|
}
|
|
|
|
/**
|
|
* @dataProvider providerSECOND
|
|
*
|
|
* @param mixed $expectedResult
|
|
* @param $dateTimeValue
|
|
*/
|
|
public function testSECOND($expectedResult, $dateTimeValue): void
|
|
{
|
|
$result = DateTime::SECOND($dateTimeValue);
|
|
self::assertEqualsWithDelta($expectedResult, $result, 1E-8);
|
|
}
|
|
|
|
public function providerSECOND()
|
|
{
|
|
return require 'tests/data/Calculation/DateTime/SECOND.php';
|
|
}
|
|
}
|