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