Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

22 lines
662B

  1. <?php
  2. require_once dirname(__DIR__).'/vendor/autoload.php';
  3. // Disable garbage collector to prevent segfaults
  4. gc_disable();
  5. set_include_path(get_include_path().PATH_SEPARATOR.dirname(__DIR__).'/lib');
  6. Mockery::getConfiguration()->allowMockingNonExistentMethods(true);
  7. if (is_file(__DIR__.'/acceptance.conf.php')) {
  8. require_once __DIR__.'/acceptance.conf.php';
  9. }
  10. if (is_file(__DIR__.'/smoke.conf.php')) {
  11. require_once __DIR__.'/smoke.conf.php';
  12. }
  13. require_once __DIR__.'/StreamCollector.php';
  14. require_once __DIR__.'/IdenticalBinaryConstraint.php';
  15. require_once __DIR__.'/SwiftMailerTestCase.php';
  16. require_once __DIR__.'/SwiftMailerSmokeTestCase.php';