phpunit.xml 732 B

123456789101112131415161718192021222324
  1. <phpunit colors="true"
  2. convertErrorsToExceptions="true"
  3. convertNoticesToExceptions="true"
  4. convertWarningsToExceptions="true"
  5. processIsolation="false"
  6. stopOnFailure="false"
  7. syntaxCheck="true"
  8. verbose="true"
  9. bootstrap="LoginTestHarness.php"
  10. strict="true">
  11. <testsuites>
  12. <testsuite name="Core">
  13. <directory>Tests/Core/</directory>
  14. </testsuite>
  15. <testsuite name="Processors">
  16. <directory>Tests/Processors/</directory>
  17. </testsuite>
  18. <testsuite name="Cases">
  19. <directory>Tests/Cases/</directory>
  20. <directory>Tests/Cases/Register/</directory>
  21. </testsuite>
  22. </testsuites>
  23. </phpunit>