phpunit.xml.dist 925 B

12345678910111213141516171819202122232425262728293031
  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 = "lib/WebDriver/ClassLoader.php" >
  14. <testsuites>
  15. <testsuite name="Project Test Suite">
  16. <directory>test/Test</directory>
  17. </testsuite>
  18. </testsuites>
  19. <filter>
  20. <whitelist>
  21. <directory>lib</directory>
  22. <exclude>
  23. <file>__init__.php</file>
  24. </exclude>
  25. </whitelist>
  26. </filter>
  27. </phpunit>