コード例 #1
0
ファイル: LockerTest.php プロジェクト: rickymathew/TYPO3.CMS
 /**
  * @test
  */
 public function constructorFetchesInstallToolConfigurationIfEmptyMethod()
 {
     $GLOBALS['TYPO3_CONF_VARS']['SYS']['lockingMode'] = Locker::LOCKING_METHOD_SIMPLE;
     $instance = new Locker('999999999', '');
     $this->assertSame(Locker::LOCKING_METHOD_SIMPLE, $instance->getMethod());
 }