-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
29 lines (29 loc) · 1.14 KB
/
Copy pathphpunit.xml
File metadata and controls
29 lines (29 loc) · 1.14 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="tests/bootstrap.php"
backupGlobals="false"
backupStaticAttributes="false"
verbose="true"
colors="false"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false">
<testsuite name="TransferAPI - Testsuite">
<directory>tests/</directory>
</testsuite>
<filter>
<whitelist>
<directory suffix=".php">src/Application/Actions/Wallet/</directory>
<directory suffix=".php">src/Application/Actions/Wallet/</directory>
<directory suffix=".php">src/Application/Handlers/</directory>
<directory suffix=".php">src/Application/Service/Wallet/</directory>
<directory suffix=".php">src/Domain/Wallet/</directory>
</whitelist>
</filter>
<logging>
<log type="junit" target="report/coverage.xml"/>
<log type="coverage-html" target="report/html/"/>
<log type="coverage-clover" target="report/clover.xml"/>
</logging>
</phpunit>