nextcloud/tests/lib/memcache/apc.php

27 lines
612 B
PHP
Raw Normal View History

<?php
2013-07-16 17:46:27 +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.
*/
namespace Test\Memcache;
2013-07-16 17:46:27 +04:00
class APC extends Cache {
protected function setUp() {
parent::setUp();
if(!\OC\Memcache\APC::isAvailable()) {
$this->markTestSkipped('The apc extension is not available.');
2012-10-03 23:06:01 +04:00
return;
}
2013-07-24 23:50:15 +04:00
if(\OC\Memcache\APCu::isAvailable()) {
$this->markTestSkipped('The apc extension is emulated by ACPu.');
return;
}
$this->instance=new \OC\Memcache\APC($this->getUniqueID());
}
}