phpunit.xml 947 B

1234567891011121314151617181920212223242526272829303132333435
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit bootstrap="./tests/bootstrap.php"
  3. colors="true"
  4. processIsolation="false"
  5. stopOnFailure="false"
  6. convertErrorsToExceptions="true"
  7. convertNoticesToExceptions="true"
  8. convertWarningsToExceptions="true"
  9. testSuiteLoaderFile="phpunit/src/Runner/StandardTestSuiteLoader.php">
  10. <testsuites>
  11. <testsuite name="All">
  12. <directory>tests</directory>
  13. </testsuite>
  14. </testsuites>
  15. <groups>
  16. <exclude>
  17. <group>integration</group>
  18. </exclude>
  19. </groups>
  20. <logging>
  21. <log type="junit" target="build/junit.xml"/>
  22. <log type="coverage-clover" target="build/coverage/clover.xml"/>
  23. </logging>
  24. <filter>
  25. <whitelist>
  26. <directory suffix=".php">./src</directory>
  27. <exclude>
  28. </exclude>
  29. </whitelist>
  30. </filter>
  31. </phpunit>