phpunit.xml.dist 1.0 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
  4. backupGlobals="false"
  5. backupStaticAttributes="false"
  6. colors="true"
  7. convertErrorsToExceptions="true"
  8. convertNoticesToExceptions="true"
  9. convertWarningsToExceptions="true"
  10. processIsolation="false"
  11. stopOnFailure="false"
  12. bootstrap="tests/bootstrap.php"
  13. >
  14. <testsuites>
  15. <testsuite name="Composer Test Suite">
  16. <directory>./tests/Composer/</directory>
  17. </testsuite>
  18. </testsuites>
  19. <groups>
  20. <exclude>
  21. <group>slow</group>
  22. <group>legacy</group>
  23. </exclude>
  24. </groups>
  25. <filter>
  26. <whitelist>
  27. <directory>./src/Composer/</directory>
  28. <exclude>
  29. <file>./src/Composer/Autoload/ClassLoader.php</file>
  30. </exclude>
  31. </whitelist>
  32. </filter>
  33. </phpunit>