PhpSpreadsheet/tests/PhpSpreadsheetTests/Calculation/Functions/DateTime/MonthTest.php

36 lines
982 B
PHP
Raw Normal View History

<?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 MonthTest extends TestCase
{
2020-04-27 10:28:36 +00:00
protected function setUp(): void
{
Functions::setCompatibilityMode(Functions::COMPATIBILITY_EXCEL);
Functions::setReturnDateType(Functions::RETURNDATE_EXCEL);
Date::setExcelCalendar(Date::CALENDAR_WINDOWS_1900);
}
/**
* @dataProvider providerMONTH
*
* @param mixed $expectedResult
* @param $dateTimeValue
*/
public function testMONTH($expectedResult, $dateTimeValue)
{
$result = DateTime::MONTHOFYEAR($dateTimeValue);
2020-04-27 10:28:36 +00:00
$this->assertEqualsWithDelta($expectedResult, $result, 1E-8);
}
public function providerMONTH()
{
return require 'data/Calculation/DateTime/MONTH.php';
}
}