phpunit.xml 814 B

12345678910111213141516171819202122
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:noNamespaceSchemaLocation="phpunit.xsd"
  4. convertErrorsToExceptions="true"
  5. convertNoticesToExceptions="true"
  6. convertWarningsToExceptions="true"
  7. bootstrap="tests/bootstrap.php"
  8. verbose="true"
  9. colors="true">
  10. <testsuites>
  11. <testsuite name="default">
  12. <directory suffix="Test.php">tests</directory>
  13. </testsuite>
  14. </testsuites>
  15. <filter>
  16. <whitelist addUncoveredFilesFromWhitelist="true">
  17. <file>./tripal_jbrowse_mgmt/tripal_jbrowse_mgmt.module</file>
  18. <directory suffix=".inc">./tripal_jbrowse_mgmt</directory>
  19. <directory suffix=".php">./tripal_jbrowse_mgmt</directory>
  20. </whitelist>
  21. </filter>
  22. </phpunit>