Files
archived-DoctrineFixturesBu…/phpunit.xml.dist
Grégoire Paris 105ff1daec Upgrade to PHPUnit 11
The symfony/phpunit-bridge listener we were using is replaced by native
features.
2024-11-30 14:30:22 +01:00

26 lines
725 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"
colors="true"
bootstrap="vendor/autoload.php"
displayDetailsOnTestsThatTriggerDeprecations="true"
>
<testsuites>
<testsuite name="DoctrineFixturesBundle for the Symfony Framework">
<directory>./tests</directory>
</testsuite>
</testsuites>
<source ignoreSuppressionOfDeprecations="true">
<include>
<directory>src</directory>
</include>
</source>
<php>
<server name="DOCTRINE_DEPRECATIONS" value="trigger"/>
</php>
</phpunit>