-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml.dist
30 lines (29 loc) · 1.04 KB
/
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
28
29
30
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="true"
backupStaticAttributes="false"
bootstrap="./tests/bootstrap.php"
colors="true"
processIsolation="false"
strict="false"
verbose="false">
<testsuites>
<testsuite name="Monitoring Handler Tests">
<directory>./tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist addUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./src</directory>
</whitelist>
</filter>
<php>
<ini name="date.timezone" value="Europe/London"/>
<ini name="error_reporting" value="E_ALL"/>
</php>
<logging>
<log type="junit" target="./build/reports/test-results.xml" logIncompleteSkipped="true"/>
<log type="coverage-html" target="./build/reports/coverage" charset="UTF-8"
highlight="false" lowUpperBound="35" highLowerBound="70"/>
<log type="coverage-clover" target="./build/reports/coverage.xml"/>
</logging>
</phpunit>