phpunit.xml.dist 795 B

123456789101112131415161718192021222324
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit backupGlobals="false"
  3. backupStaticAttributes="false"
  4. colors="false"
  5. convertErrorsToExceptions="true"
  6. convertNoticesToExceptions="true"
  7. convertWarningsToExceptions="true"
  8. stopOnFailure="false"
  9. bootstrap="vendor/autoload.php"
  10. >
  11. <php>
  12. <!-- Disable deprecation warnings -->
  13. <!-- php -r 'echo -1 & ~E_USER_DEPRECATED & ~E_DEPRECATED;' -->
  14. <ini name="error_reporting" value="-24577"/>
  15. <const name="MONGODB_URI" value="mongodb://localhost:27017" />
  16. </php>
  17. <testsuites>
  18. <testsuite name="Mongo driver adapter test suite">
  19. <directory>./tests/Alcaeus/MongoDbAdapter/</directory>
  20. </testsuite>
  21. </testsuites>
  22. </phpunit>