2
0

phpunit.xml 941 B

1234567891011121314151617181920212223242526272829303132333435
  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/7.5/phpunit.xsd"
  4. colors="true"
  5. bootstrap="vendor/autoload.php">
  6. <php>
  7. <ini name="error_reporting" value="-1"/>
  8. </php>
  9. <testsuites>
  10. <testsuite name="all_tests">
  11. <directory>tests</directory>
  12. </testsuite>
  13. <testsuite name="only_fast_tests">
  14. <directory>tests</directory>
  15. <exclude>tests/SlowTests</exclude>
  16. </testsuite>
  17. <testsuite name="only_slow_tests">
  18. <directory>tests/SlowTests</directory>
  19. </testsuite>
  20. </testsuites>
  21. <groups>
  22. <exclude>
  23. <group>large</group>
  24. </exclude>
  25. </groups>
  26. <filter>
  27. <whitelist>
  28. <directory>src</directory>
  29. </whitelist>
  30. </filter>
  31. </phpunit>