コード例 #1
0
ファイル: CacheTest.php プロジェクト: nicklasos/ConfigServer
 public function testDropAllCache()
 {
     $this->cache->set('key:1', 'value:1');
     $this->cache->set('key:2', 'value:2');
     $this->cache->dropAll();
     $this->assertNull($this->cache->get('key:1'));
     $this->assertNull($this->cache->get('key:2'));
 }
コード例 #2
0
 public function dropCache()
 {
     $this->cache->dropAll();
 }