phpunit.xml.dist 660 B

123456789101112131415161718192021
  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/9.3/phpunit.xsd"
  4. colors="true"
  5. convertErrorsToExceptions="true"
  6. convertNoticesToExceptions="true"
  7. convertWarningsToExceptions="true"
  8. stopOnFailure="false"
  9. verbose="true"
  10. >
  11. <testsuites>
  12. <testsuite name="AllTests">
  13. <directory>tests</directory>
  14. </testsuite>
  15. </testsuites>
  16. <coverage>
  17. <exclude>
  18. <directory suffix=".php">lib/</directory>
  19. </exclude>
  20. </coverage>
  21. </phpunit>