46 lines
1.6 KiB
XML
46 lines
1.6 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!-- https://phpunit.de/manual/current/en/appendixes.configuration.html -->
|
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.8/phpunit.xsd"
|
|
backupGlobals="false"
|
|
colors="true"
|
|
bootstrap="vendor/autoload.php"
|
|
convertNoticesToExceptions="false"
|
|
>
|
|
<php>
|
|
<ini name="error_reporting" value="-1" />
|
|
<server name="KERNEL_CLASS" value="AppKernel" />
|
|
</php>
|
|
|
|
<testsuites>
|
|
<testsuite name="Project Test Suite">
|
|
<directory>tests</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<listeners>
|
|
<listener class="Symfony\Bridge\PhpUnit\SymfonyTestsListener">
|
|
<arguments>
|
|
<array>
|
|
<!-- set this option to 0 to disable the DebugClassLoader integration -->
|
|
<element key="debug-class-loader"><integer>0</integer></element>
|
|
</array>
|
|
</arguments>
|
|
</listener>
|
|
</listeners>
|
|
|
|
<filter>
|
|
<whitelist>
|
|
<directory>src</directory>
|
|
<exclude>
|
|
<directory>src/*Bundle/DataFixtures</directory>
|
|
<directory>src/*/*Bundle/DataFixtures</directory>
|
|
<directory>src/*/Bundle/*Bundle/DataFixtures</directory>
|
|
<directory>src/*Bundle/Resources</directory>
|
|
<directory>src/*/*Bundle/Resources</directory>
|
|
<directory>src/*/Bundle/*Bundle/Resources</directory>
|
|
</exclude>
|
|
</whitelist>
|
|
</filter>
|
|
</phpunit> |