-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathphpunit.xml
More file actions
25 lines (25 loc) · 846 Bytes
/
phpunit.xml
File metadata and controls
25 lines (25 loc) · 846 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
<!-- filepath: /workspace/phpunit.xml -->
<phpunit bootstrap="vendor/autoload.php"
colors="true"
stopOnFailure="false">
<testsuites>
<testsuite name="My Test Suite">
<directory>./tests</directory>
</testsuite>
</testsuites>
<coverage processUncoveredFiles="true">
<include>
<!-- <directory>./src</directory> -->
<!-- <file>./vsp-client.php</file> -->
<file>./vsp-q3a.php</file>
<!-- <file>./vsp.php</file> -->
<!-- <file>./vutil.php</file> -->
<!-- <file>./xp103_commmpat.inc.php</file> -->
</include>
<report>
<clover outputFile="coverage/clover.xml"/>
<html outputDirectory="coverage/html"/>
<!-- <text/> -->
</report>
</coverage>
</phpunit>