-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
27 lines (26 loc) · 962 Bytes
/
phpunit.xml
File metadata and controls
27 lines (26 loc) · 962 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="vendor/autoload.php" colors="true" beStrictAboutTestsThatDoNotTestAnything="false">
<testsuites>
<testsuite name="Unit">
<directory>tests</directory>
</testsuite>
</testsuites>
<coverage cacheDirectory=".phpunit-cache/coverage">
<include>
<directory suffix=".php">src</directory>
</include>
<exclude>
<directory>vendor</directory>
<directory>tests</directory>
<directory>build</directory>
</exclude>
<report>
<text outputFile="build/coverage/coverage.txt" showOnlySummary="false"/>
<clover outputFile="build/coverage/coverage.xml"/>
<html outputDirectory="build/coverage/html" lowUpperBound="50" highLowerBound="80"/>
</report>
</coverage>
<logging>
<junit outputFile="build/junit.xml"/>
</logging>
</phpunit>