2012-11-03 21:52:55 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
|
|
class TimeZoneTest extends PHPUnit_Framework_TestCase
|
|
|
|
{
|
|
|
|
|
|
|
|
public function setUp()
|
|
|
|
{
|
|
|
|
if (!defined('PHPEXCEL_ROOT')) {
|
|
|
|
define('PHPEXCEL_ROOT', APPLICATION_PATH . '/');
|
|
|
|
}
|
|
|
|
require_once(PHPEXCEL_ROOT . 'PHPExcel/Autoloader.php');
|
2015-05-17 13:00:02 +00:00
|
|
|
}
|
2012-11-03 21:52:55 +00:00
|
|
|
|
2015-05-17 13:00:02 +00:00
|
|
|
public function testSetTimezone()
|
|
|
|
{
|
|
|
|
$timezoneValues = array(
|
|
|
|
'Europe/Prague',
|
|
|
|
'Asia/Tokyo',
|
|
|
|
'America/Indiana/Indianapolis',
|
|
|
|
'Pacific/Honolulu',
|
|
|
|
'Atlantic/St_Helena',
|
|
|
|
);
|
|
|
|
|
|
|
|
foreach ($timezoneValues as $timezoneValue) {
|
2015-05-17 16:34:30 +00:00
|
|
|
$result = call_user_func(array('PHPExcel_Shared_TimeZone','setTimezone'), $timezoneValue);
|
2015-05-17 13:00:02 +00:00
|
|
|
$this->assertTrue($result);
|
|
|
|
}
|
2012-11-03 21:52:55 +00:00
|
|
|
|
2015-05-17 13:00:02 +00:00
|
|
|
}
|
2012-11-03 21:52:55 +00:00
|
|
|
|
|
|
|
public function testSetTimezoneWithInvalidValue()
|
2015-05-17 13:00:02 +00:00
|
|
|
{
|
|
|
|
$unsupportedTimezone = 'Etc/GMT+10';
|
2015-05-17 16:34:30 +00:00
|
|
|
$result = call_user_func(array('PHPExcel_Shared_TimeZone','setTimezone'), $unsupportedTimezone);
|
2015-05-17 13:00:02 +00:00
|
|
|
$this->assertFalse($result);
|
|
|
|
}
|
2012-11-03 21:52:55 +00:00
|
|
|
}
|