<?php
namespace DoctrineTestsCommonCache;
use DoctrineCommonCacheApcCache;
/**
* @requires extension apc
*/
class ApcCacheTest extends CacheTest
{
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');
}
}