| 123456789101112131415161718192021222324 |
- <?xml version="1.0" encoding="UTF-8"?>
- <phpunit backupGlobals="false"
- backupStaticAttributes="false"
- colors="false"
- convertErrorsToExceptions="true"
- convertNoticesToExceptions="true"
- convertWarningsToExceptions="true"
- stopOnFailure="false"
- bootstrap="vendor/autoload.php"
- >
- <php>
- <!-- Disable deprecation warnings -->
- <!-- php -r 'echo -1 & ~E_USER_DEPRECATED & ~E_DEPRECATED;' -->
- <ini name="error_reporting" value="-24577"/>
- <const name="MONGODB_URI" value="mongodb://localhost:27017" />
- </php>
- <testsuites>
- <testsuite name="Mongo driver adapter test suite">
- <directory>./tests/Alcaeus/MongoDbAdapter/</directory>
- </testsuite>
- </testsuites>
- </phpunit>
|