-
Notifications
You must be signed in to change notification settings - Fork 14
/
phpunit.xml.dist
35 lines (34 loc) · 995 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
28
29
30
31
32
33
34
35
<?xml version="1.0"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.6/phpunit.xsd"
bootstrap="tests/php/bootstrap.php"
backupGlobals="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
>
<testsuites>
<testsuite name="default">
<directory>tests/php</directory>
</testsuite>
</testsuites>
<php>
<ini name="xdebug.mode" value="coverage" />
</php>
<logging>
<testdoxXml outputFile="build/logs/xml.log" />
<testdoxHtml outputFile="build/logs/html.log" />
<text outputFile="build/logs/text.log"/>
</logging>
<coverage>
<include>
<directory>./src</directory>
</include>
<report>
<clover outputFile="build/logs/clover.xml"/>
<html outputDirectory="build/report" />
</report>
</coverage>
</phpunit>