phpunit.xml.dist 523 B

1234567891011121314151617181920
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <phpunit bootstrap="./tests/bootstrap.php"
  3. colors="true"
  4. convertErrorsToExceptions="true"
  5. convertNoticesToExceptions="true"
  6. convertWarningsToExceptions="true"
  7. stopOnFailure="false">
  8. <testsuites>
  9. <testsuite name="Test Suite">
  10. <directory>./tests</directory>
  11. </testsuite>
  12. </testsuites>
  13. <filter>
  14. <whitelist>
  15. <file>./Cache.php</file>
  16. <file>./Connection.php</file>
  17. <file>./Session.php</file>
  18. </whitelist>
  19. </filter>
  20. </phpunit>