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