2012-06-05 13:58:30 -04:00
|
|
|
<?php
|
2013-07-16 09:46:27 -04:00
|
|
|
|
2012-06-05 13:58:30 -04:00
|
|
|
/**
|
2013-07-16 09: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.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
namespace Test\Memcache;
|
2012-06-05 13:58:30 -04:00
|
|
|
|
2016-05-20 09:38:20 -04:00
|
|
|
class APCTest extends Cache {
|
2014-11-10 17:30:38 -05:00
|
|
|
protected function setUp() {
|
|
|
|
|
parent::setUp();
|
|
|
|
|
|
2013-03-17 11:00:39 -04:00
|
|
|
if(!\OC\Memcache\APC::isAvailable()) {
|
|
|
|
|
$this->markTestSkipped('The apc extension is not available.');
|
2012-10-03 15:06:01 -04:00
|
|
|
return;
|
|
|
|
|
}
|
2013-07-24 15:50:15 -04:00
|
|
|
if(\OC\Memcache\APCu::isAvailable()) {
|
|
|
|
|
$this->markTestSkipped('The apc extension is emulated by ACPu.');
|
|
|
|
|
return;
|
|
|
|
|
}
|
2014-12-02 07:51:36 -05:00
|
|
|
$this->instance=new \OC\Memcache\APC($this->getUniqueID());
|
2012-06-05 13:58:30 -04:00
|
|
|
}
|
|
|
|
|
}
|