forked from kunalvarma05/dropbox-php-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
30 lines (30 loc) · 909 Bytes
/
phpunit.xml
File metadata and controls
30 lines (30 loc) · 909 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
28
29
30
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="vendor/autoload.php"
backupGlobals="false"
colors="true"
processIsolation="false"
stopOnFailure="false">
<testsuites>
<testsuite name="DropboxTestSuite">
<directory>tests</directory>
</testsuite>
</testsuites>
<source>
<include>
<directory suffix=".php">src/</directory>
</include>
</source>
<logging>
<junit outputFile="build-report/report.junit.xml"/>
</logging>
<coverage>
<report>
<clover outputFile="build-report/clover.xml"/>
<html outputDirectory="coverage-html" lowUpperBound="50" highLowerBound="90"/>
<text outputFile="build-report/coverage.txt" showUncoveredFiles="false" showOnlySummary="true"/>
</report>
</coverage>
<php>
<ini name="xdebug.mode" value="coverage"/>
</php>
</phpunit>