phpunit.xml.dist 1.0 KB

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