-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy pathphpunit.xml
30 lines (29 loc) · 1 KB
/
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
27
28
29
30
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
bootstrap="tests/bootstrap.php"
backupGlobals="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
convertDeprecationsToExceptions="true"
verbose="true">
<testsuites>
<testsuite name="default">
<directory suffix="Test.php">tests</directory>
</testsuite>
</testsuites>
<coverage cacheDirectory=".phpunit.cache/code-coverage">
<include>
<directory suffix=".php">src/Gateways</directory>
<directory suffix=".php">src/Transactions</directory>
<directory suffix=".php">src/Exceptions</directory>
<directory suffix=".php">src/Helpers</directory>
<directory suffix=".php">src/Order</directory>
<directory suffix=".php">src/Notification</directory>
</include>
<report>
<html outputDirectory="coverage"/>
</report>
</coverage>
</phpunit>