/**
  * Sets up the fixture, for example, opens a network connection.
  * This method is called before a test is executed.
  *
  * @return  void
  */
 protected function setUp()
 {
     if (!JCacheStorageMemcached::isSupported() || $this->isBlacklisted('memcached')) {
         $this->markTestSkipped('The Memcached cache handler is not supported on this system.');
     }
     parent::setUp();
     $this->handler = new JCacheStorageMemcached();
     // Override the lifetime because the JCacheStorage API multiplies it by 60 (converts minutes to seconds)
     $this->handler->_lifetime = 2;
 }
 /**
  * Sets up the fixture, for example, opens a network connection.
  * This method is called before a test is executed.
  *
  * @return  void
  */
 protected function setUp()
 {
     if (!JCacheStorageMemcached::isSupported()) {
         $this->markTestSkipped('The Memcached cache handler is not supported on this system.');
     }
     parent::setUp();
     try {
         $this->handler = new JCacheStorageMemcached();
     } catch (JCacheExceptionConnecting $e) {
         $this->markTestSkipped('Failed to connect to Memcached');
     }
     // Override the lifetime because the JCacheStorage API multiplies it by 60 (converts minutes to seconds)
     $this->handler->_lifetime = 2;
 }
 /**
  * Check availability of all cache handlers
  *
  * @return void
  */
 private function checkAvailability()
 {
     $this->available = array('apc' => JCacheStorageApc::isSupported(), 'apcu' => JCacheStorageApcu::isSupported(), 'cachelite' => JCacheStorageCachelite::isSupported(), 'file' => true, 'memcache' => JCacheStorageMemcache::isSupported(), 'memcached' => JCacheStorageMemcached::isSupported(), 'redis' => JCacheStorageRedis::isSupported(), 'wincache' => JCacheStorageWincache::isSupported(), 'xcache' => JCacheStorageXcache::isSupported());
 }
 /**
  * Testing isSupported().
  *
  * @return  void
  */
 public function testIsSupported()
 {
     $this->assertEquals($this->extensionAvailable, $this->object->isSupported(), 'Claims Memcache is not loaded.');
 }