예제 #1
0
파일: ConfigTest.php 프로젝트: phpscr/usvn
 public function testSetTimezone()
 {
     USVN_Config::setTimezone('Europe/Paris');
     $config = new USVN_Config_Ini(USVN_CONFIG_FILE, USVN_CONFIG_SECTION);
     $this->assertEquals('Europe/Paris', $config->timezone);
 }