-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml.dist
30 lines (30 loc) · 898 Bytes
/
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit colors="true" bootstrap="./vendor/autoload.php">
<testsuites>
<testsuite name="Unit_Test">
<directory>./tests/src/Unit/</directory>
</testsuite>
<testsuite name="Integration_Test">
<directory>./tests/src/Integration/</directory>
</testsuite>
<testsuite name="Functional_Test">
<directory>./tests/src/Functional/</directory>
</testsuite>
<testsuite name="Certification_Test">
<directory>./tests/src/Certification/</directory>
</testsuite>
</testsuites>
<logging>
<log type="coverage-clover" target="build/logs/clover.xml"/>
</logging>
<!-- Filter for coverage reports. -->
<filter>
<blacklist>
<directory>./vendor</directory>
<directory>./tests</directory>
</blacklist>
<whitelist>
<directory>src</directory>
</whitelist>
</filter>
</phpunit>