phpunit.xml.dist
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="./vendor/autoload.php" colors="true">
<testsuites>
<testsuite name="RedirectBundle test suite">
<directory suffix="Test.php">./Tests</directory>
</testsuite>
</testsuites>
<logging>
<log type="coverage-clover" target="clover.xml"/>
</logging>
<filter>
<whitelist>
<directory>./</directory>
<exclude>
<file>./AutologicRedirectBundle.php</file>
<directory>./Exception</directory>
<directory>./DependencyInjection</directory>
<directory>./Resources</directory>
<directory>./Tests</directory>
<directory>./vendor</directory>
</exclude>
</whitelist>
</filter>
</phpunit>