-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathphpunit.xml
More file actions
20 lines (20 loc) · 761 Bytes
/
Copy pathphpunit.xml
File metadata and controls
20 lines (20 loc) · 761 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<phpunit bootstrap="./bootstrap.php" colors="true">
<testsuites>
<testsuite name="LdcUserProfile Test Suite">
<directory>./</directory>
</testsuite>
</testsuites>
<listeners>
<listener class="\Mockery\Adapter\Phpunit\TestListener"></listener>
</listeners>
<logging>
<log type="coverage-html" target="./log" charset="UTF-8" highlight="false" lowUpperBound="35" highLowerBound="70"/>
<log type="coverage-text" target="php://stdout"/>
<log type="coverage-clover" target="./log/clover.xml"/>
</logging>
<filter>
<whitelist processUncoveredFilesFromWhitelist="false">
<directory suffix=".php">../src</directory>
</whitelist>
</filter>
</phpunit>