-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml
executable file
·34 lines (34 loc) · 1.02 KB
/
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
33
34
<phpunit colors="true"
backupGlobals="false"
bootstrap="vendor/autoload.php"
syntaxCheck="false"
verbose="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
>
<testsuites>
<testsuite name="Random Avatar Test Suite">
<directory suffix="Tests.php">./tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./src</directory>
</whitelist>
</filter>
<logging>
<log
type="coverage-html"
target="./tmp/coverage/"
charset="UTF-8"
yui="true"
highlight="true"
lowUpperBound="50"
highLowerBound="80"
/>
<log type="coverage-clover" target="./tmp/clover.xml" charset="UTF-8"/>
</logging>
</phpunit>