phpunit.xml 1.3 KB

123456789101112131415161718192021222324252627282930313233
  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="tripal">
  12. <directory suffix="Test.php">tests/tripal</directory>
  13. </testsuite>
  14. <testsuite name="tripal_chado">
  15. <directory suffix="Test.php">tests/tripal_chado/</directory>
  16. </testsuite>
  17. <testsuite name="tripal_bulk_loader">
  18. <directory suffix="Test.php">tests/tripal_bulk_loader/</directory>
  19. </testsuite>
  20. <testsuite name="tripal_chado_views">
  21. <directory suffix="Test.php">tests/tripal_chado_views/</directory>
  22. </testsuite>
  23. <testsuite name="tripal_daemon">
  24. <directory suffix="Test.php">tests/tripal_daemon/</directory>
  25. </testsuite>
  26. <testsuite name="tripal_ds">
  27. <directory suffix="Test.php">tests/tripal_ds/</directory>
  28. </testsuite>
  29. <testsuite name="tripal_ws">
  30. <directory suffix="Test.php">tests/tripal_ws/</directory>
  31. </testsuite>
  32. </testsuites>
  33. </phpunit>