1
0
mirror of synced 2025-01-18 22:41:43 +03:00

22 lines
432 B
PHP
Raw Normal View History

2009-07-14 22:36:09 +00:00
<?php
namespace Doctrine\Tests\Common\Cache;
use Doctrine\Common\Cache\ApcCache;
require_once __DIR__ . '/../../TestInit.php';
class ApcCacheTest extends CacheTest
2009-07-14 22:36:09 +00:00
{
public function setUp()
{
if ( ! extension_loaded('apc')) {
$this->markTestSkipped('The ' . __CLASS__ .' requires the use of APC');
}
}
protected function _getCacheDriver()
2009-07-14 22:36:09 +00:00
{
return new ApcCache();
2009-07-14 22:36:09 +00:00
}
}