phpunit.xml 829 B

12345678910111213141516171819202122232425262728
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd" backupGlobals="false" colors="true" bootstrap="bootstrap.php">
  3. <coverage>
  4. <include>
  5. <directory>src</directory>
  6. </include>
  7. </coverage>
  8. <php>
  9. <ini name="error_reporting" value="-1"/>
  10. </php>
  11. <testsuites>
  12. <testsuite name="all_tests">
  13. <directory>tests</directory>
  14. </testsuite>
  15. <testsuite name="only_fast_tests">
  16. <directory>tests</directory>
  17. <exclude>tests/SlowTests</exclude>
  18. </testsuite>
  19. <testsuite name="only_slow_tests">
  20. <directory>tests/SlowTests</directory>
  21. </testsuite>
  22. </testsuites>
  23. <groups>
  24. <exclude>
  25. <group>large</group>
  26. </exclude>
  27. </groups>
  28. </phpunit>