phpunit.xml 972 B

1234567891011121314151617181920212223242526272829
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit bootstrap="bootstrap.php"
  3. backupGlobals="false"
  4. backupStaticAttributes="false"
  5. colors="true"
  6. strict="true"
  7. verbose="true"
  8. convertErrorsToExceptions="true"
  9. convertNoticesToExceptions="true"
  10. convertWarningsToExceptions="true"
  11. processIsolation="false"
  12. stopOnFailure="false"
  13. syntaxCheck="false"
  14. >
  15. <testsuites>
  16. <testsuite name="Chamilo LMS classes">
  17. <directory suffix="Test.class.php">../phpunit/classes</directory>
  18. <directory suffix="Test.lib.php">../phpunit/classes</directory>
  19. </testsuite>
  20. </testsuites>
  21. <filter>
  22. <whitelist addUncoveredFilesFromWhitelist="true">
  23. <directory suffix=".php">../../main/inc</directory>
  24. <exclude>
  25. <!--file>global.inc.php</file-->
  26. </exclude>
  27. </whitelist>
  28. </filter>
  29. </phpunit>