342ffb629b
* Merge branch 'master' of C:\Projects\PHPOffice\PHPSpreadsheet\develop with conflicts. * First pass at moving MathTrig tests into individual test files * Appeasement to the great goddess PHPCS * Appeasement to the great goddess PHPCS * Minor scrutinizer issue resolved * More refactoring of tests into individual test files fr each math/trig function * More work on the math/trig test refactoring, plus a bit of tidyup of date/time tests as well * Fix test * Fix docblock in test * Finish refactoring Math/Trig tests into separate files * Fix SubTotal Test * Import additional classes for SubTotal test
42 lines
1.2 KiB
PHP
42 lines
1.2 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 DayTest extends TestCase
|
|
{
|
|
public function setUp()
|
|
{
|
|
Functions::setCompatibilityMode(Functions::COMPATIBILITY_EXCEL);
|
|
Functions::setReturnDateType(Functions::RETURNDATE_EXCEL);
|
|
Date::setExcelCalendar(Date::CALENDAR_WINDOWS_1900);
|
|
}
|
|
|
|
/**
|
|
* @dataProvider providerDAY
|
|
*
|
|
* @param mixed $expectedResultExcel
|
|
* @param mixed $expectedResultOpenOffice
|
|
* @param $dateValue
|
|
*/
|
|
public function testDAY($expectedResultExcel, $expectedResultOpenOffice, $dateValue)
|
|
{
|
|
$resultExcel = DateTime::DAYOFMONTH($dateValue);
|
|
$this->assertEquals($expectedResultExcel, $resultExcel, '', 1E-8);
|
|
|
|
Functions::setCompatibilityMode(Functions::COMPATIBILITY_OPENOFFICE);
|
|
|
|
$resultOpenOffice = DateTime::DAYOFMONTH($dateValue);
|
|
$this->assertEquals($expectedResultOpenOffice, $resultOpenOffice, '', 1E-8);
|
|
}
|
|
|
|
public function providerDAY()
|
|
{
|
|
return require 'data/Calculation/DateTime/DAY.php';
|
|
}
|
|
}
|