-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml
37 lines (30 loc) · 1.14 KB
/
phpunit.xml
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
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
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" />
<!-- Log Code Coverage results as HTML -->
<log type="coverage-html"
target="build/reports/coverage/html"
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>