mirror of
https://github.com/doctrine/DoctrineFixturesBundle.git
synced 2026-03-23 22:32:17 +01:00
26 lines
725 B
XML
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>
|