You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
527 B

  1. <?php
  2. /*
  3. * @copyright NetMonsters <team@netmonsters.ru>
  4. * @link http://netmonsters.ru
  5. * @package Majestic
  6. * @subpackage UnitTests
  7. * @since 2011-12-02
  8. *
  9. * Test set for Redis
  10. */
  11. require_once 'redis/RedisDebugTest.php';
  12. require_once 'redis/RedisManagerTest.php';
  13. class PackageRedisTests
  14. {
  15. public static function suite()
  16. {
  17. $suite = new PHPUnit_Framework_TestSuite('Redis');
  18. $suite->addTestSuite('RedisDebugTest');
  19. $suite->addTestSuite('RedisManagerTest');
  20. return $suite;
  21. }
  22. }