mirror of
https://github.com/doctrine/data-fixtures.git
synced 2026-03-23 22:32:13 +01:00
25 lines
744 B
XML
25 lines
744 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"
|
|
beStrictAboutOutputDuringTests="true"
|
|
displayDetailsOnTestsThatTriggerDeprecations="true"
|
|
failOnDeprecation="true"
|
|
>
|
|
<testsuites>
|
|
<testsuite name="Doctrine Data Fixtures Test Suite">
|
|
<directory>./tests</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<php>
|
|
<env name="DOCTRINE_DEPRECATIONS" value="trigger"/>
|
|
</php>
|
|
|
|
<source ignoreSuppressionOfDeprecations="true">
|
|
<include>
|
|
<directory>./src/</directory>
|
|
</include>
|
|
</source>
|
|
</phpunit>
|