1 |
cb15593b
|
Cajova-Houba
|
<?xml version="1.0" encoding="UTF-8"?>
|
2 |
|
|
<phpunit backupGlobals="false"
|
3 |
|
|
backupStaticAttributes="false"
|
4 |
|
|
bootstrap="vendor/autoload.php">
|
5 |
|
|
<testsuites>
|
6 |
|
|
<testsuite name="PHP_CodeCoverage">
|
7 |
|
|
<directory suffix="Test.php">tests/PHP</directory>
|
8 |
|
|
</testsuite>
|
9 |
|
|
</testsuites>
|
10 |
|
|
|
11 |
|
|
<logging>
|
12 |
|
|
<log type="coverage-html" target="build/coverage"/>
|
13 |
|
|
<log type="coverage-clover" target="build/logs/clover.xml"/>
|
14 |
|
|
<log type="junit" target="build/logs/junit.xml" logIncompleteSkipped="false"/>
|
15 |
|
|
</logging>
|
16 |
|
|
|
17 |
|
|
<filter>
|
18 |
|
|
<whitelist addUncoveredFilesFromWhitelist="true">
|
19 |
|
|
<directory suffix=".php">src</directory>
|
20 |
|
|
</whitelist>
|
21 |
|
|
</filter>
|
22 |
|
|
</phpunit>
|