27 lines
681 B
Plaintext
27 lines
681 B
Plaintext
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
|
||
|
<!-- http://www.phpunit.de/manual/current/en/appendixes.configuration.html -->
|
||
|
<phpunit
|
||
|
colors="true"
|
||
|
bootstrap="Tests/bootstrap.php"
|
||
|
>
|
||
|
|
||
|
<testsuites>
|
||
|
<testsuite name="Symfony Cmf Routing Test Suite">
|
||
|
<directory>./Tests</directory>
|
||
|
</testsuite>
|
||
|
</testsuites>
|
||
|
|
||
|
<filter>
|
||
|
<whitelist addUncoveredFilesFromWhitelist="true">
|
||
|
<directory>.</directory>
|
||
|
<exclude>
|
||
|
<directory>Test/</directory>
|
||
|
<directory>Tests/</directory>
|
||
|
<directory>vendor/</directory>
|
||
|
</exclude>
|
||
|
</whitelist>
|
||
|
</filter>
|
||
|
|
||
|
</phpunit>
|