*/ namespace Desarrolla2\Test\Cache\Adapter; use Desarrolla2\Cache\Cache; use Desarrolla2\Cache\Adapter\Memcache; /** * MemcacheTest */ class MemcacheTest extends AbstractCacheTest { public function setUp() { parent::setup(); if (!extension_loaded('memcache') || !class_exists('\Memcache')) { $this->markTestSkipped( 'The Memcache extension is not available.' ); } $adapter = new Memcache(); $this->cache = new Cache($adapter); } /** * @return array */ public function dataProviderForOptionsException() { return [ ['ttl', 0, '\Desarrolla2\Cache\Exception\CacheException'], ['file', 100, '\Desarrolla2\Cache\Exception\CacheException'], ]; } }