updateTimestamp() public method

Update the cache timestamp to the current time.
public updateTimestamp ( )
示例#1
0
文件: Base.php 项目: horde/horde
 protected function _testValidateAfterUpdateTimestamp()
 {
     $cache = new Horde_ActiveSync_SyncCache(self::$state, 'dev123', 'mike', self::$logger->getLogger());
     $this->assertEquals(true, $cache->validateCache());
     $cache->updateTimestamp();
     $this->assertEquals(true, $cache->validateCache());
 }