-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
21 lines (20 loc) · 928 Bytes
/
phpunit.xml
File metadata and controls
21 lines (20 loc) · 928 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="./vendor/autoload.php" colors="true">
<logging>
<log type="coverage-html" target="public/build/coverage" title="ZFSkeletonApp"
charset="UTF-8" yui="true" highlight="true"
lowUpperBound="35" highLowerBound="true" />
<log type="coverage-clover" target="public/build/logs/clover.xml" />
<log type="junit" target="public/build/logs/junit.xml" logIncompleteSkipped="false"/>
<log type="testdox-html" target="public/build/phpdox/index.html"/>
<log type="testdox-txt" target="public/build/phpdox/testdox.txt"/>
</logging>
<testsuite name="integration">
<directory>./module/**/test/</directory>
</testsuite>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./module/**/src/</directory>
</whitelist>
</filter>
</phpunit>