phpunit.xml 965 B

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