-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathphpunit.xml
More file actions
35 lines (31 loc) · 983 Bytes
/
phpunit.xml
File metadata and controls
35 lines (31 loc) · 983 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
31
32
33
34
35
<phpunit bootstrap="tests/bootstrap.php"
colors="true"
processIsolation="false"
displayDetailsOnTestsThatTriggerDeprecations="true"
displayDetailsOnTestsThatTriggerErrors="true"
displayDetailsOnTestsThatTriggerNotices="true"
displayDetailsOnTestsThatTriggerWarnings="true"
displayDetailsOnPhpunitDeprecations="true"
cacheResult="false"
cacheDirectory="build/cache"
failOnWarning="false"
>
<testsuites>
<testsuite name="unit">
<directory suffix=".php">tests/Kount/Ris/integration/</directory>
</testsuite>
</testsuites>
<source>
<include>
<directory suffix=".php">./src/Kount/</directory>
</include>
</source>
<coverage
includeUncoveredFiles="true"
pathCoverage="false"
>
<report>
<clover outputFile="build/coverage/clover.xml"/>
</report>
</coverage>
</phpunit>