1 | <?php |
||
6 | class XcacheCacheTest extends CacheTest{ |
||
7 | |||
8 | /** |
||
9 | * @covers DBAL\Caching\XcacheCache |
||
10 | */ |
||
11 | public function setUp() { |
||
12 | if(!extension_loaded('xcache')) { |
||
13 | $this->markTestSkipped( |
||
14 | 'The XCache extension is not available.' |
||
15 | ); |
||
16 | } |
||
17 | $this->cache = new XcacheCache(); |
||
18 | parent::setUp(); |
||
19 | } |
||
20 | |||
21 | } |
||
22 |