protected function ApcCacheTest::setUp

Same name in this branch

File

drupal/core/vendor/kriswallsmith/assetic/tests/Assetic/Test/Cache/ApcCacheTest.php, line 21

Class

ApcCacheTest
@group integration

Namespace

Assetic\Test\Cache

Code

protected function setUp() {
  if (!extension_loaded('apc') || !ini_get('apc.enable_cli')) {
    $this
      ->markTestSkipped('APC must be installed and enabled.');
  }
}