forked from paypal/Checkout-PHP-SDK
-
Notifications
You must be signed in to change notification settings - Fork 1
/
phpunit.xml.dist
executable file
·41 lines (40 loc) · 1.28 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
<?xml version="1.0" encoding="UTF-8" ?>
<phpunit
backupGlobals="false"
backupStaticAttributes="false"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
bootstrap="./vendor/autoload.php">
<testsuites>
<testsuite name="full">
<directory>tests/Integration/</directory>
<directory>tests/Unit/</directory>
</testsuite>
<testsuite name="integration">
<directory>tests/Integration/</directory>
</testsuite>
<testsuite name="unit">
<directory>tests/Unit/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>lib</directory>
<exclude>
<directory>tests</directory>
</exclude>
</whitelist>
</filter>
<php>
<ini name="display_errors" value="On"/>
<ini name="display_startup_errors" value="On"/>
<!-- E_ALL -->
<ini name="error_reporting" value="32767"/>
<!-- your client id and secret (see documentation) -->
<env name="CLIENT_ID" value=""/>
<env name="CLIENT_SECRET" value=""/>
</php>
</phpunit>