phpunit-autoload.php 300 B

1234567891011121314
  1. <?php
  2. require_once __DIR__ . '/psalm-autoload.php';
  3. /**
  4. * This is necessary for PHPUnit on PHP >= 5.3
  5. *
  6. * Class PHPUnit_Framework_TestCase
  7. */
  8. if (PHP_VERSION_ID >= 50300) {
  9. if (!class_exists('PHPUnit_Framework_TestCase')) {
  10. require_once __DIR__ . '/other/phpunit-shim.php';
  11. }
  12. }