-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
44 lines (44 loc) · 1.76 KB
/
phpunit.xml.dist
File metadata and controls
44 lines (44 loc) · 1.76 KB
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
36
37
38
39
40
41
42
43
44
<?xml version="1.0" encoding="UTF-8" ?>
<phpunit bootstrap="vendor/autoload.php"
backupGlobals="false"
backupStaticAttributes="false"
colors="true"
verbose="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
cacheResultFile=".temp/fs_cache/.phpunit.result.cache">
<testsuites>
<testsuite name="Sen Region Test Suite">
<directory>tests</directory>
</testsuite>
</testsuites>
<logging>
<junit outputFile="build/junit.xml"/>
<text outputFile="build/logfile.txt"/>
<teamcity outputFile="build/teamcity.txt"/>
<testdoxHtml outputFile="build/testdox.html"/>
<testdoxText outputFile="build/testdox.txt"/>
<testdoxXml outputFile="build/testdox.xml"/>
</logging>
<coverage cacheDirectory="true"
ignoreDeprecatedCodeUnits="true"
disableCodeCoverageIgnore="true">
<include>
<directory suffix=".php">src</directory>
</include>
<exclude>
<directory suffix=".php">src/Adapters</directory>
</exclude>
<report>
<clover outputFile="build/coverage/clover.xml"/>
<crap4j outputFile="build/coverage/crap4j.xml" threshold="50"/>
<html outputDirectory="build/coverage/html-coverage" lowUpperBound="50" highLowerBound="90"/>
<php outputFile="build/coverage/coverage.php"/>
<text outputFile="build/coverage/coverage.txt" showUncoveredFiles="false" showOnlySummary="true"/>
<xml outputDirectory="build/coverage/xml-coverage"/>
</report>
</coverage>
</phpunit>