-
Notifications
You must be signed in to change notification settings - Fork 4
/
phpunit.xml
32 lines (32 loc) · 981 Bytes
/
phpunit.xml
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
<phpunit backupGlobals="false"
backupStaticAttributes="false"
colors="true"
verbose="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false">
<testsuite name="Main Test Suite">
<directory>./</directory>
</testsuite>
<filter>
<blacklist>
<directory suffix=".php">./tests</directory>
</blacklist>
<whitelist>
<directory suffix=".php">./source</directory>
</whitelist>
</filter>
<logging>
<log type="coverage-html"
target="./code-coverage"
charset="UTF-8"
yui="true"
highlight="true"
lowUpperBound="50"
highLowerBound="80"/>
<log type="coverage-clover"
target="./code-coverage/coverage.clover"/>
</logging>
</phpunit>