phpunit.xml.dist 605 B

1234567891011121314151617181920
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!-- http://www.phpunit.de/manual/current/en/appendixes.configuration.html -->
  3. <phpunit
  4. backupGlobals = "false"
  5. backupStaticAttributes = "false"
  6. colors = "true"
  7. convertErrorsToExceptions = "true"
  8. convertNoticesToExceptions = "true"
  9. convertWarningsToExceptions = "true"
  10. processIsolation = "false"
  11. stopOnFailure = "false"
  12. syntaxCheck = "false"
  13. bootstrap = "./vendor/autoload.php" >
  14. <testsuites>
  15. <testsuite name="Stiphle">
  16. <directory>./tests</directory>
  17. </testsuite>
  18. </testsuites>
  19. </phpunit>