-
Notifications
You must be signed in to change notification settings - Fork 47
/
phpunit.xml.dist
42 lines (37 loc) · 1.16 KB
/
phpunit.xml.dist
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
36
37
38
39
40
41
42
<?xml version="1.0" encoding="utf-8" ?>
<phpunit
colors="true"
bootstrap="tests/phpunit-bootstrap.php"
strict="true"
>
<testsuites>
<testsuite name="unit-tests">
<directory>tests</directory>
<exclude>tests/connection-tests</exclude>
</testsuite>
</testsuites>
<filter processUncoveredFilesFromWhitelist="true">
<whitelist>
<directory suffix=".php">src</directory>
<exclude>
<!-- Classes with connection to API -->
<directory>src/Bpack247.php</directory>
<directory>src/Bpost.php</directory>
<directory>src/Geo6.php</directory>
</exclude>
</whitelist>
</filter>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src</directory>
<exclude>
<directory>tests/reports</directory>
</exclude>
</whitelist>
</filter>
<logging>
<log type="junit" target="tests/reports/phpunit.xml"/>
<log type="coverage-html" target="tests/reports/coverage-clover-html" showUncoveredFiles="true"/>
<log type="coverage-clover" target="tests/reports/coverage-clover.xml" showUncoveredFiles="true"/>
</logging>
</phpunit>