Exemplo n.º 1
0
 public function testGetStats()
 {
     $this->assertTrue(is_array($this->object->getStats()) || is_null($this->object->getStats()));
 }
Exemplo n.º 2
0
 private function createMemcache($options)
 {
     $memcache = $this->connectionFactory->getMemcacheConnection($options);
     $cache = new MemcacheCache();
     $cache->setMemcache($memcache);
     return $cache;
 }