bootstrap.php 664 B

1234567891011121314151617181920
  1. <?php
  2. /*
  3. * This file is part of the Predis package.
  4. *
  5. * (c) Daniele Alessandri <suppakilla@gmail.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. require __DIR__.'/../autoload.php';
  11. require __DIR__.'/PHPUnit/ArrayHasSameValuesConstraint.php';
  12. require __DIR__.'/PHPUnit/RedisCommandConstraint.php';
  13. require __DIR__.'/PHPUnit/PredisTestCase.php';
  14. require __DIR__.'/PHPUnit/PredisCommandTestCase.php';
  15. require __DIR__.'/PHPUnit/PredisConnectionTestCase.php';
  16. require __DIR__.'/PHPUnit/PredisProfileTestCase.php';
  17. require __DIR__.'/PHPUnit/PredisDistributorTestCase.php';