You are here

public function DateTimeTest::testTIMEtoPHP 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::testTIMEtoPHP()

File

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

Class

DateTimeTest

Code

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