-
Notifications
You must be signed in to change notification settings - Fork 37
/
phpunit.xml.dist
39 lines (32 loc) · 1.14 KB
/
phpunit.xml.dist
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<phpunit
bootstrap="src/test/php/bootstrap.php"
stopOnError="true"
stopOnFailure="true"
stopOnIncomplete="true"
stopOnSkipped="true"
verbose="true">
<logging>
<!-- Log Unit Test results into a JUnit XML file -->
<log type="junit"
target="build/reports/phpunit/TEST-phpunit.report.xml"
logIncompleteSkipped="false"/>
<!-- Log Code Coverage results as HTML -->
<log type="coverage-html"
target="build/reports/coverage/html"
charset="UTF-8"
yui="true"
highlight="false"
lowUpperBound="35"
highLowerBound="70" />
<!-- Log Code Coverage results as a Clover XML file (WARNING: Path must no be changed because its Needed by Code
Climate). -->
<log type="coverage-clover"
target="build/logs/clover.xml" />
</logging>
<!-- Includes and Excludes files for Code Coverage -->
<filter>
<whitelist addUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src/main/php</directory>
</whitelist>
</filter>
</phpunit>