phpunit.xml.dist 937 B

1234567891011121314151617181920212223242526272829
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit backupGlobals="true"
  3. backupStaticAttributes="false"
  4. bootstrap="lib/password.php"
  5. colors="false"
  6. convertErrorsToExceptions="true"
  7. convertNoticesToExceptions="true"
  8. convertWarningsToExceptions="true"
  9. forceCoversAnnotation="false"
  10. mapTestClassNameToCoveredClassName="false"
  11. processIsolation="false"
  12. stopOnError="false"
  13. stopOnFailure="false"
  14. stopOnIncomplete="false"
  15. stopOnSkipped="false"
  16. testSuiteLoaderClass="PHPUnit_Runner_StandardTestSuiteLoader"
  17. strict="false"
  18. verbose="false">
  19. <testsuites>
  20. <testsuite name="Unit">
  21. <directory>test/Unit</directory>
  22. </testsuite>
  23. </testsuites>
  24. <filter>
  25. <whitelist>
  26. <directory suffix=".php">lib/</directory>
  27. </whitelist>
  28. </filter>
  29. </phpunit>