-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathphpunit.xml
26 lines (25 loc) · 993 Bytes
/
phpunit.xml
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
<phpunit backupGlobals="false" backupStaticAttributes="false" bootstrap="tests/lib/bootstrap.php">
<testsuites>
<testsuite name="Kushki-Library">
<directory>./tests</directory>
</testsuite>
<testsuite name="unit">
<includePath>./tests/lib/CommonUtils.php</includePath>
<directory>./tests/unit</directory>
</testsuite>
<testsuite name="integration">
<includePath>./tests/lib/CommonUtils.php</includePath>
<directory>./tests/inttests</directory>
</testsuite>
</testsuites>
<logging>
<log type="coverage-html" target="reports" />
<log type="coverage-clover" target="reports/clover.xml" />
<log type="junit" target="reports/junit.xml" logIncompleteSkipped="false" />
</logging>
<filter>
<whitelist addUncoveredFilesFromWhitelist="true">
<directory suffix=".php">lib</directory>
</whitelist>
</filter>
</phpunit>