-
Notifications
You must be signed in to change notification settings - Fork 11
/
phpunit.xml.dist.bak
38 lines (37 loc) · 1.26 KB
/
phpunit.xml.dist.bak
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit colors="true">
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src</directory>
</whitelist>
</filter>
<logging>
<log type="coverage-php" target="./build/cov/clover.xml"/>
</logging>
<testsuites>
<testsuite name="Core Classes">
<file> tests/CoreClassesTest.php</file>
</testsuite>
<testsuite name="Payloads">
<file> tests/PayloadsTest.php</file>
</testsuite>
<testsuite name="QR Code">
<file> tests/QrTest.php</file>
</testsuite>
<testsuite name="Payments">
<file> tests/PaymentTest.php</file>
<file> tests/PreAuthTest.php</file>
<file> tests/PendingPaymentTest.php</file>
<file> tests/ContinuousPaymentTest.php</file>
<file> tests/RefundTest.php</file>
</testsuite>
<testsuite name="User">
<file>tests/PipelinedAccountLinkTest.php</file>
<file> tests/UserTest.php</file>
<file> tests/WalletTest.php </file>
</testsuite>
<testsuite name="Housekeeping">
<file> tests/ZCleanupTest.php</file>
</testsuite>
</testsuites>
</phpunit>