-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml.dist
36 lines (33 loc) · 1.43 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="./tests/bootstrap.php">
<testsuite name="ClacksMiddleware">
<directory>./tests</directory>
</testsuite>
<groups>
<exclude>
<group>disable</group>
</exclude>
</groups>
<filter>
<whitelist processUncoveredFilesFromWhitelist="false">
<directory suffix=".php">./src</directory>
</whitelist>
</filter>
<logging>
<!--
Adapt these paths to your special needs
-->
<log type="coverage-html" target="doc/coverage"
lowUpperBound="35" highLowerBound="70"/>
<!-- log type="coverage-xml" target="path/to/coverage.xml"/-->
<!-- log type="graphviz" target="path/to/logfile.dot"/-->
<!-- log type="json" target="path/to/phpunit/logfile.json"/-->
<!-- log type="metrics-xml" target="path/to/phpunit/metrics.xml"/-->
<!-- log type="plain" target="path/to/phpunit/logfile.txt"/-->
<!-- log type="pmd-xml" target="path/to/phpunit/pmd.xml" cpdMinLines="5" cpdMinMatches="70"/-->
<!-- log type="tap" target="path/to/phpunit/logfile.tap"/-->
<!-- log type="test-xml" target="path/to/phpunit/logfile.xml" logIncompleteSkipped="false"/-->
<!-- log type="testdox-html" target="path/to/phpunit/testdox.html"/-->
<!-- log type="testdox-text" target="path/to/phpunit/testdox.txt"/-->
</logging>
</phpunit>