/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

  1. <?php
  2. /**
  3. * Copyright (c) 2013 Robin Appelman <icewind@owncloud.com>
  4. * This file is licensed under the Affero General Public License version 3 or
  5. * later.
  6. * See the COPYING-README file.
  7. */
  8. namespace Test\Memcache;
  9. class Memcached extends Cache {
  10. public function setUp() {
  11. if (!\OC\Memcache\Memcached::isAvailable()) {
  12. $this->markTestSkipped('The memcached extension is not available.');
  13. return;
  14. }
  15. $this->instance = new \OC\Memcache\Memcached(uniqid());
  16. }
  17. }