forked from zaporylie/php-vipps
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
26 lines (24 loc) · 756 Bytes
/
phpunit.xml.dist
File metadata and controls
26 lines (24 loc) · 756 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
<phpunit colors="true">
<testsuites>
<testsuite name="Unit tests">
<directory>./test/Unit</directory>
</testsuite>
<testsuite name="Integration tests">
<directory>./test/Integration</directory>
</testsuite>
</testsuites>
<logging>
<log type='coverage-html' target='test/output/report'/>
<log type='coverage-clover' target='test/output/clover.xml'/>
</logging>
<filter>
<whitelist>
<directory>./</directory>
<exclude>
<directory>./examples</directory>
<directory>./test</directory>
<directory>./vendor</directory>
</exclude>
</whitelist>
</filter>
</phpunit>