2017-01-09 19:08:01 +00:00
|
|
|
<?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="app/autoload.php"
|
|
|
|
>
|
|
|
|
<php>
|
|
|
|
<ini name="error_reporting" value="-1" />
|
|
|
|
<server name="KERNEL_DIR" value="app/" />
|
|
|
|
</php>
|
|
|
|
|
|
|
|
<testsuites>
|
|
|
|
<testsuite name="Project Test Suite">
|
|
|
|
<directory>tests</directory>
|
|
|
|
</testsuite>
|
|
|
|
</testsuites>
|
|
|
|
|
|
|
|
<filter>
|
|
|
|
<whitelist>
|
|
|
|
<directory>src</directory>
|
|
|
|
<exclude>
|
2017-01-09 20:14:34 +00:00
|
|
|
<directory>src/*Bundle/DataFixtures</directory>
|
|
|
|
<directory>src/*/*Bundle/DataFixtures</directory>
|
|
|
|
<directory>src/*/Bundle/*Bundle/DataFixtures</directory>
|
2017-01-09 19:08:01 +00:00
|
|
|
<directory>src/*Bundle/Resources</directory>
|
|
|
|
<directory>src/*/*Bundle/Resources</directory>
|
|
|
|
<directory>src/*/Bundle/*Bundle/Resources</directory>
|
|
|
|
</exclude>
|
|
|
|
</whitelist>
|
|
|
|
</filter>
|
|
|
|
</phpunit>
|