27 lines
692 B
Plaintext
27 lines
692 B
Plaintext
![]() |
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
|
||
|
<!-- http://www.phpunit.de/manual/current/en/appendixes.configuration.html -->
|
||
|
<phpunit
|
||
|
colors="true"
|
||
|
bootstrap="vendor/symfony-cmf/testing/bootstrap/bootstrap.php"
|
||
|
>
|
||
|
|
||
|
<testsuites>
|
||
|
<testsuite name="unit tests">
|
||
|
<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>
|