-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml
29 lines (29 loc) · 1 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
bootstrap="tests/bootstrap.php"
cacheResultFile="tmp/.phpunit.result.cache"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<coverage>
<include>
<directory suffix=".php">src</directory>
</include>
<report>
<clover outputFile="tmp/coverage/clover.xml"/>
<html outputDirectory="tmp/coverage/html"/>
<text outputFile="php://stdout"/>
</report>
</coverage>
<logging>
<junit outputFile="tmp/logging/junit.xml"/>
<teamcity outputFile="tmp/logging/teamcity.txt"/>
<testdoxHtml outputFile="tmp/logging/testdox.html"/>
<testdoxText outputFile="tmp/logging/testdox.txt"/>
<testdoxXml outputFile="tmp/logging/testdox.xml"/>
<text outputFile="tmp/logging/logfile.txt"/>
</logging>
<testsuites>
<testsuite name="Unit tests">
<directory>tests</directory>
</testsuite>
</testsuites>
</phpunit>