-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.coverage.xml
More file actions
31 lines (29 loc) · 974 Bytes
/
phpunit.coverage.xml
File metadata and controls
31 lines (29 loc) · 974 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
bootstrap="tests/bootstrap.php"
colors="true">
<testsuites>
<testsuite name="SaveTests">
<directory>tests</directory>
</testsuite>
</testsuites>
<coverage includeUncoveredFiles="true">
<report>
<clover outputFile="clover.xml" />
</report>
</coverage>
<source>
<include>
<directory suffix=".php">./save</directory>
<directory suffix=".php">./includes</directory>
<directory suffix=".php">./api/v2</directory>
<file>./api_functions.php</file>
<file>./send_xml_file.php</file>
<file>./log_page_event.php</file>
</include>
<exclude>
<file>./save/save_data.php</file>
</exclude>
</source>
</phpunit>