Cache\Adapter\Apcu\Tests\IntegrationPoolTest::createCachePool PHP Method

createCachePool() public method

public createCachePool ( )
    public function createCachePool()
    {
        if (defined('HHVM_VERSION') || !function_exists('apcu_store')) {
            $this->markTestSkipped();
        }
        return new ApcuCachePool();
    }
IntegrationPoolTest