
| Current Path : /var/www/html/ift/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/ift/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache/ApcCacheTest.php |
<?php
namespace Doctrine\Tests\Common\Cache;
use Doctrine\Common\Cache\ApcCache;
/**
* @requires extension apc
*/
class ApcCacheTest extends CacheTest
{
protected function setUp()
{
if (!ini_get('apc.enable_cli')) {
$this->markTestSkipped('APC must be enabled for the CLI with the ini setting apc.enable_cli=1');
}
}
protected function _getCacheDriver()
{
return new ApcCache();
}
public function testLifetime()
{
$this->markTestSkipped('The APC cache TTL is not working in a single process/request. See https://bugs.php.net/bug.php?id=58084');
}
}