phpunit.xml 559 B

1234567891011121314151617181920
  1. <phpunit
  2. bootstrap="tests/bootstrap.php"
  3. backupGlobals="false"
  4. colors="true"
  5. convertErrorsToExceptions="true"
  6. convertNoticesToExceptions="true"
  7. convertWarningsToExceptions="true"
  8. >
  9. <testsuites>
  10. <testsuite>
  11. <directory prefix="test-" suffix=".php">./tests/</directory>
  12. </testsuite>
  13. <!-- The suite below HAS to be last to run,
  14. as it includes a test that sets some const and would contaminate
  15. the other tests as well. -->
  16. <testsuite>
  17. <directory prefix="testX-" suffix=".php">./tests/</directory>
  18. </testsuite>
  19. </testsuites>
  20. </phpunit>