phpunit.xml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!-- http://www.phpunit.de/manual/current/en/appendixes.configuration.html -->
  3. <phpunit
  4. backupGlobals = "false"
  5. backupStaticAttributes = "false"
  6. colors = "true"
  7. convertErrorsToExceptions = "true"
  8. convertNoticesToExceptions = "true"
  9. convertWarningsToExceptions = "true"
  10. processIsolation = "false"
  11. stopOnFailure = "false"
  12. syntaxCheck = "false"
  13. bootstrap = "tests/bootstrap.php" >
  14. <filter>
  15. <blacklist>
  16. <directory>vendor</directory>
  17. </blacklist>
  18. <whitelist>
  19. <directory>src</directory>
  20. </whitelist>
  21. </filter>
  22. <testsuites>
  23. <testsuite name="stomp-php Functional Test Suite">
  24. <directory>tests/Functional/</directory>
  25. </testsuite>
  26. <testsuite name="stomp-php Special Test Cases Suite">
  27. <directory>tests/Cases/</directory>
  28. </testsuite>
  29. <testsuite name="stomp-php Unit Test Suite">
  30. <directory>tests/Unit/</directory>
  31. </testsuite>
  32. </testsuites>
  33. <logging>
  34. <log type="coverage-text" target="php://stdout" showUncoveredFiles="true"/>
  35. </logging>
  36. </phpunit>