complete.phpunit.xml 1.2 KB

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