/tests/lib/memcache/memcached.php
https://github.com/sezuan/core · PHP · 20 lines · 11 code · 3 blank · 6 comment · 1 complexity · 762dcc9834ead62fc174a0f57a0e4130 MD5 · raw file
- <?php
- /**
- * Copyright (c) 2013 Robin Appelman <icewind@owncloud.com>
- * This file is licensed under the Affero General Public License version 3 or
- * later.
- * See the COPYING-README file.
- */
- namespace Test\Memcache;
- class Memcached extends Cache {
- public function setUp() {
- if (!\OC\Memcache\Memcached::isAvailable()) {
- $this->markTestSkipped('The memcached extension is not available.');
- return;
- }
- $this->instance = new \OC\Memcache\Memcached(uniqid());
- }
- }