for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace DBAL\Tests\Caching;
use DBAL\Caching\ApcCache;
class ApcCacheTest extends CacheTest{
public function setUp() {
if(!extension_loaded('apc')) {
$this->markTestSkipped(
'The APC extension is not available.'
);
}