Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
Latest commit
31 lines (27 loc) · 813 Bytes
/
Copy pathphpunit.xml
File metadata and controls
31 lines (27 loc) · 813 Bytes
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
bootstrap="tests/bootstrap.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
backupGlobals="false"
processIsolation="false"
>
<testsuites>
<testsuitename="Koine EventManager">
<directory>./tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directorysuffix=".php">./src</directory>
</whitelist>
</filter>
<logging>
<logtype="coverage-clover"target="./build/logs/clover.xml"/>
<logtype="coverage-html"target="./build/coverage"charset="UTF-8"
yui="true"highlight="true"lowUpperBound="50"highLowerBound="80"/>
<logtype="testdox-html"target="./build/logs/testdox.html"/>
</logging>
</phpunit>