forked from Antidot-be/bpost-api-library
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
35 lines (31 loc) · 989 Bytes
/
phpunit.xml.dist
File metadata and controls
35 lines (31 loc) · 989 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.0/phpunit.xsd"
bootstrap="tests/phpunit-bootstrap.php"
colors="true">
<testsuites>
<testsuite name="unit">
<directory>tests</directory>
<exclude>tests/connection-tests</exclude>
</testsuite>
</testsuites>
<source>
<include>
<directory suffix=".php">src</directory>
</include>
<exclude>
<directory>tests/reports</directory>
<!-- Classes with connection to API -->
<file>src/Bpack247.php</file>
<file>src/Bpost.php</file>
<file>src/Geo6.php</file>
</exclude>
</source>
<logging>
<junit outputFile="tests/reports/phpunit.xml"/>
<coverage>
<html outputDirectory="tests/reports/coverage-clover-html"/>
<clover outputFile="tests/reports/coverage-clover.xml"/>
</coverage>
</logging>
</phpunit>