Test Failed
Push — master ( c5b8d7...35e052 )
by Adam
01:59
created

ApcCacheTest::setUp()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 7
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 7
rs 9.4285
cc 2
eloc 4
nc 2
nop 0
1
<?php
2
namespace DBAL\Tests\Caching;
3
4
use DBAL\Caching\ApcCache;
5
6
class ApcCacheTest extends CacheTest{
7
    
8
    public function setUp() {
9
        if(!extension_loaded('apc')) {
10
            $this->markTestSkipped(
11
                'The APC extension is not available.'
12
            );
13
        }
14
    }
15
    
16
}
17