forked from globalpayments/php-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml.dist
50 lines (48 loc) · 1.64 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="./test/setup.php"
colors="true"
processIsolation="false"
stopOnFailure="false"
>
<php>
<ini name="zend.enable_gc" value="0"/>
<ini name="memory_limit" value="-1"/>
<!-- error_reporting(E_ALL); -->
<ini name="error_reporting" value="32767"/>
</php>
<testsuites>
<testsuite name="all">
<directory>./test/</directory>
</testsuite>
<testsuite name="unit">
<directory>./test/Unit/</directory>
</testsuite>
<testsuite name="integration">
<directory>./test/Integration/</directory>
</testsuite>
<testsuite name="certification">
<directory>./test/Integration/Gateways/PorticoConnector/Certifications/</directory>
<directory>./test/Integration/Gateways/RealexConnector/Certifications/</directory>
</testsuite>
<testsuite name="portico">
<directory>./test/Integration/Gateways/PorticoConnector/</directory>
</testsuite>
<testsuite name="realex">
<directory>./test/Integration/Gateways/RealexConnector/</directory>
</testsuite>
<testsuite name="gpapi">
<directory>./test/Integration/Gateways/GpApiConnector/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>./src/</directory>
<exclude>
<directory>./test/</directory>
</exclude>
</whitelist>
</filter>
</phpunit>
<!-- vim: set ft=xml -->