public function WincacheCacheTest::setUp

File

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

Class

WincacheCacheTest

Namespace

Doctrine\Tests\Common\Cache

Code

public function setUp() {
  if (!extension_loaded('wincache') || !function_exists('wincache_ucache_info')) {
    $this
      ->markTestSkipped('The ' . __CLASS__ . ' requires the use of Wincache');
  }
}