nextcloud/tests/lib/memcache/memcached.php

21 lines
479 B
PHP
Raw Normal View History

2013-03-17 19:01:10 +04:00
<?php
2013-07-16 17:46:27 +04:00
2013-03-17 19:01:10 +04:00
/**
* 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.
*/
2013-07-16 17:46:27 +04:00
namespace Test\Memcache;
class Memcached extends Cache {
2013-03-17 19:01:10 +04:00
public function setUp() {
if (!\OC\Memcache\Memcached::isAvailable()) {
$this->markTestSkipped('The memcached extension is not available.');
return;
}
2013-07-16 17:46:27 +04:00
$this->instance = new \OC\Memcache\Memcached(uniqid());
2013-03-17 19:01:10 +04:00
}
}