mirror of
https://github.com/FriendsOfSymfony/FOSUserBundle.git
synced 2026-03-24 06:52:08 +01:00
30 lines
814 B
XML
30 lines
814 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<phpunit bootstrap="./tests/bootstrap.php" colors="true"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd">
|
|
|
|
<testsuites>
|
|
<testsuite name="FOSUserBundle test suite">
|
|
<directory suffix="Test.php">./tests</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<coverage>
|
|
<include>
|
|
<directory>src/</directory>
|
|
</include>
|
|
<exclude>
|
|
<directory>src/Resources</directory>
|
|
</exclude>
|
|
</coverage>
|
|
|
|
<php>
|
|
<env name="SYMFONY_DEPRECATIONS_HELPER" value="max[total]=0" />
|
|
</php>
|
|
|
|
<listeners>
|
|
<listener class="Symfony\Bridge\PhpUnit\SymfonyTestsListener" />
|
|
</listeners>
|
|
</phpunit>
|