phpunit.xml.dist 940 B

123456789101112131415161718192021222324252627
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit
  3. bootstrap = "./src/JonnyW/PhantomJs/Tests/bootstrap.php"
  4. backupGlobals = "false"
  5. backupStaticAttributes = "false"
  6. colors = "true"
  7. convertErrorsToExceptions = "true"
  8. convertNoticesToExceptions = "true"
  9. convertWarningsToExceptions = "true"
  10. processIsolation = "false"
  11. stopOnFailure = "true"
  12. syntaxCheck = "false">
  13. <testsuites>
  14. <testsuite name="PhantomJS Test Suite">
  15. <directory suffix="Test.php">./src/JonnyW/PhantomJs/Tests/*</directory>
  16. </testsuite>
  17. </testsuites>
  18. <filter>
  19. <whitelist>
  20. <directory suffix=".php">./src/</directory>
  21. <exclude>
  22. <directory>./src/JonnyW/PhantomJs/Tests</directory>
  23. </exclude>
  24. </whitelist>
  25. </filter>
  26. </phpunit>