public function ApcCacheTest::setUp

Same name in this branch

File

drupal/core/vendor/doctrine/common/tests/Doctrine/Tests/Common/Cache/ApcCacheTest.php, line 9

Class

ApcCacheTest

Namespace

Doctrine\Tests\Common\Cache

Code

public function setUp() {
  if (!extension_loaded('apc') || false === @apc_cache_info()) {
    $this
      ->markTestSkipped('The ' . __CLASS__ . ' requires the use of APC');
  }
}