-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathphpunit.xml.dist
37 lines (37 loc) · 1.56 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="./vendor/autoload.php">
<testsuite name="OrgHeiglHybridAuth">
<directory>./tests/</directory>
</testsuite>
<groups>
<exclude>
<group>disable</group>
</exclude>
</groups>
<filter>
<whitelist>
<directory suffix=".php">src</directory>
</whitelist>
</filter>
<listeners>
<listener class="\Mockery\Adapter\Phpunit\TestListener"></listener>
</listeners>
<logging>
<!--
Adapt these paths to your special needs
-->
<!--log type="coverage-html" target="build/coverage" charset="UTF-8"
yui="true" highlight="false"
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>