Completed
Push — master ( a8b991...dda2b8 )
by Marco
06:05 queued 02:56
created

ApcuCacheTest::testLifetime()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %
Metric Value
dl 0
loc 4
rs 10
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
3
namespace Doctrine\Tests\Common\Cache;
4
5
use Doctrine\Common\Cache\ApcuCache;
6
7
/**
8
 * @requires extension apcu
9
 */
10
class ApcuCacheTest extends CacheTest
11
{
12
    protected function _getCacheDriver()
13
    {
14
        return new ApcuCache();
15
    }
16
17
    public function testLifetime()
18
    {
19
        $this->markTestSkipped('The APC cache TTL is not working in a single process/request. See https://bugs.php.net/bug.php?id=58084');
20
    }
21
}
22