You are here

public function DateTimeTest::testDATEVALUEtoPHP in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/unitTests/Classes/PHPExcel/Calculation/DateTimeTest.php \DateTimeTest::testDATEVALUEtoPHP()

File

vendor/phpoffice/phpexcel/unitTests/Classes/PHPExcel/Calculation/DateTimeTest.php, line 89

Class

DateTimeTest

Code

public function testDATEVALUEtoPHP() {
  PHPExcel_Calculation_Functions::setReturnDateType(PHPExcel_Calculation_Functions::RETURNDATE_PHP_NUMERIC);
  $result = PHPExcel_Calculation_DateTime::DATEVALUE('2012-1-31');
  PHPExcel_Calculation_Functions::setReturnDateType(PHPExcel_Calculation_Functions::RETURNDATE_EXCEL);
  $this
    ->assertEquals(1327968000, $result, NULL, 1.0E-8);
}