You are here

public function DateTimeTest::testTIMEVALUEtoPHP in Loft Data Grids 6.2

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

File

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

Class

DateTimeTest

Code

public function testTIMEVALUEtoPHP() {
  PHPExcel_Calculation_Functions::setReturnDateType(PHPExcel_Calculation_Functions::RETURNDATE_PHP_NUMERIC);
  $result = PHPExcel_Calculation_DateTime::TIMEVALUE('7:30:20');
  PHPExcel_Calculation_Functions::setReturnDateType(PHPExcel_Calculation_Functions::RETURNDATE_EXCEL);
  $this
    ->assertEquals(23420, $result, NULL, 1.0E-8);
}