2013-03-17 19:00:39 +04:00
|
|
|
<?php
|
2013-07-16 17:46:27 +04:00
|
|
|
|
2013-03-17 19:00:39 +04:00
|
|
|
/**
|
2013-07-16 17:46:27 +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-03-17 19:00:39 +04:00
|
|
|
*/
|
|
|
|
|
2013-07-16 17:46:27 +04:00
|
|
|
namespace Test\Memcache;
|
|
|
|
|
2016-05-20 16:38:20 +03:00
|
|
|
class XCacheTest extends Cache {
|
2014-11-11 01:30:38 +03:00
|
|
|
protected function setUp() {
|
|
|
|
parent::setUp();
|
|
|
|
|
2013-03-17 19:00:39 +04:00
|
|
|
if (!\OC\Memcache\XCache::isAvailable()) {
|
|
|
|
$this->markTestSkipped('The xcache extension is not available.');
|
|
|
|
return;
|
|
|
|
}
|
2014-12-02 15:51:36 +03:00
|
|
|
$this->instance = new \OC\Memcache\XCache($this->getUniqueID());
|
2013-03-17 19:00:39 +04:00
|
|
|
}
|
|
|
|
}
|