Files
archived-mongodb-maker-bundle/phpunit.xml.dist
Jérôme Tamarelle e59afbe9e5 PHPORM-439 Initialize the make:document command (#3)
* Setup test

* Draft implementation of make:document command

* doctrine/mongodb-odm-bundle has now an official recipe

* Add tests to MongoDBHelper

* Update attribute namespace for ODM v2.16

* Fix tests

* Require version 1.x from symfony/maker-bundle, as it exist in my fork and in the symfony repo

* Add symfony/phpunit-bridge because it's symlinked in test environment

'https://github.com/symfony/maker-bundle/pull/480#pullrequestreview-304282682'

* Add mongodb-atlas-local container to tests

* Add PHP 8.5 polyfill
2026-01-30 12:01:03 +01:00

27 lines
827 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
bootstrap="tests/bootstrap.php"
colors="true"
failOnAllIssues="true"
displayDetailsOnAllIssues="true"
>
<php>
<ini name="error_reporting" value="-1" />
<env name="MONGODB_URI" value="mongodb://localhost:27017" />
</php>
<testsuites>
<testsuite name="Doctrine MongoDB Maker Bundle Test Suite">
<directory>./tests/</directory>
<exclude>./tests/tmp</exclude>
</testsuite>
</testsuites>
<source ignoreSuppressionOfDeprecations="true">
<include>
<directory>./src/</directory>
</include>
</source>
</phpunit>