phpunit.xml.dist 932 B

1234567891011121314151617181920212223242526272829303132333435
  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="tests/bootstrap.php"
  12. >
  13. <testsuites>
  14. <testsuite name="Composer Test Suite">
  15. <directory>./tests/Composer/</directory>
  16. </testsuite>
  17. </testsuites>
  18. <groups>
  19. <exclude>
  20. <group>slow</group>
  21. <group>legacy</group>
  22. </exclude>
  23. </groups>
  24. <filter>
  25. <whitelist>
  26. <directory>./src/Composer/</directory>
  27. <exclude>
  28. <file>./src/Composer/Autoload/ClassLoader.php</file>
  29. </exclude>
  30. </whitelist>
  31. </filter>
  32. </phpunit>