-
Notifications
You must be signed in to change notification settings - Fork 1
/
phpunit.xml.dist
25 lines (25 loc) · 956 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd" colors="true" bootstrap="./tests/bootstrap.php">
<coverage includeUncoveredFiles="true">
<include>
<directory suffix=".php">src/</directory>
<directory suffix=".php">tests/</directory>
</include>
<report>
<clover outputFile="coverage/logs/clover.xml"/>
<html outputDirectory="coverage" lowUpperBound="30" highLowerBound="80"/>
<text outputFile="php://stdout" showUncoveredFiles="true"/>
</report>
</coverage>
<testsuites>
<testsuite name="AllTests">
<directory>tests</directory>
</testsuite>
</testsuites>
<logging/>
<php>
<const name="WEB_SERVER_HOST" value="localhost"/>
<const name="WEB_SERVER_PORT" value="8081"/>
<const name="WEB_SERVER_DOCROOT" value="./tests/public"/>
</php>
</phpunit>