phpunit.xml 900 B

123456789101112131415161718192021222324
  1. <phpunit bootstrap="./application/bootstrap.php" colors="true">
  2. <testsuite name="My Application Tests">
  3. <directory>./</directory>
  4. </testsuite>
  5. <filter>
  6. <whitelist>
  7. <directory suffix=".php">../application/</directory>
  8. <exclude>
  9. <directory suffix=".phtml">../application/</directory>
  10. <file>../application/Bootstrap.php</file>
  11. <file>../application/controllers/ErrorController.php</file>
  12. </exclude>
  13. </whitelist>
  14. </filter>
  15. <!-- Disabling broken code coverage report. It's not using our autoloader for some reason...
  16. <logging>
  17. <log type="coverage-html" target="./log/report" charset="UTF-8" yui="true" hightlight="true" lowupperbound="50" highlowerbound="80">
  18. <log type="testdox" target="./log/testdox.html">
  19. </log></log></logging>
  20. -->
  21. </phpunit>