RedisArrayCacheTest.php 657 B

123456789101112131415161718192021222324
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Symfony\Component\Cache\Tests\Simple;
  11. class RedisArrayCacheTest extends AbstractRedisCacheTest
  12. {
  13. public static function setupBeforeClass()
  14. {
  15. parent::setupBeforeClass();
  16. if (!class_exists('RedisArray')) {
  17. self::markTestSkipped('The RedisArray class is required.');
  18. }
  19. self::$redis = new \RedisArray([getenv('REDIS_HOST')], ['lazy_connect' => true]);
  20. }
  21. }