complete.phpunit.xml 897 B

12345678910111213141516171819202122232425262728293031323334
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit backupGlobals="false"
  3. backupStaticAttributes="false"
  4. colors="true"
  5. convertErrorsToExceptions="true"
  6. convertNoticesToExceptions="true"
  7. convertWarningsToExceptions="true"
  8. processIsolation="false"
  9. stopOnFailure="false"
  10. syntaxCheck="false"
  11. bootstrap="./bootstrap.php"
  12. >
  13. <testsuites>
  14. <testsuite name="Full Composer Test Suite">
  15. <directory>./Composer/</directory>
  16. </testsuite>
  17. </testsuites>
  18. <groups>
  19. <exclude>
  20. <group>legacy</group>
  21. </exclude>
  22. </groups>
  23. <filter>
  24. <whitelist>
  25. <directory>../src/Composer/</directory>
  26. <exclude>
  27. <file>../src/Composer/Autoload/ClassLoader.php</file>
  28. </exclude>
  29. </whitelist>
  30. </filter>
  31. </phpunit>