-
Notifications
You must be signed in to change notification settings - Fork 50
/
phpunit.xml.dist
27 lines (27 loc) · 924 Bytes
/
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
<phpunit
bootstrap="tests/php/bootstrap.php"
backupGlobals="false"
backupStaticAttributes="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="true"
stopOnFailure="false"
verbose="true">
<testsuites>
<testsuite name="unit">
<directory suffix="Test.php">tests/php/unit</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">.src/</directory>
<file>./</file>
</whitelist>
</filter>
<logging>
<log type="coverage-clover" target="coverage/report/clover.xml"/>
<log type="coverage-html" target="coverage/report/html" lowUpperBound="35" highLowerBound="70"/>
</logging>
</phpunit>