NelmioApiDocBundle/phpunit.xml.dist

31 lines
893 B
Plaintext
Raw Normal View History

2016-06-30 23:30:37 +02:00
<?xml version="1.0" encoding="UTF-8"?>
2016-07-12 00:33:55 +02:00
2016-06-30 23:30:37 +02:00
<!-- http://phpunit.de/manual/4.1/en/appendixes.configuration.html -->
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2016-07-12 00:33:55 +02:00
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.6/phpunit.xsd"
2016-06-30 23:30:37 +02:00
backupGlobals="false"
colors="true"
bootstrap="vendor/autoload.php"
>
<php>
<ini name="error_reporting" value="-1" />
2017-10-04 20:59:47 +02:00
<env name="SYMFONY_DEPRECATIONS_HELPER" value="weak_vendors" />
2016-06-30 23:30:37 +02:00
</php>
2016-07-12 00:33:55 +02:00
2016-06-30 23:30:37 +02:00
<testsuites>
2016-07-12 00:33:55 +02:00
<testsuite name="Project Test Suite">
<directory>Tests</directory>
2016-06-30 23:30:37 +02:00
</testsuite>
</testsuites>
2016-07-12 00:33:55 +02:00
2016-06-30 23:30:37 +02:00
<filter>
<whitelist>
2016-07-12 00:33:55 +02:00
<directory>.</directory>
2016-06-30 23:30:37 +02:00
<exclude>
2016-07-12 00:33:55 +02:00
<directory>Tests</directory>
<directory>vendor</directory>
2016-06-30 23:30:37 +02:00
</exclude>
</whitelist>
</filter>
</phpunit>