forked from gpupo/mercadolivre-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml.dist
57 lines (55 loc) · 1.74 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
51
52
53
54
55
56
57
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
stopOnWarning="false"
stopOnIncomplete="false"
stopOnSkipped="false"
bootstrap="config/bootstrap.php"
>
<testsuites>
<testsuite name="Main Test Suite">
<directory>tests</directory>
</testsuite>
<testsuite name="Product">
<directory>tests/Entity/Product/</directory>
</testsuite>
<testsuite name="Order">
<directory>tests/Entity/Order</directory>
</testsuite>
<testsuite name="Message">
<directory>tests/Entity/Message</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>src/</directory>
<exclude>
<directory>src/Console/</directory>
<directory>*.config.php</directory>
<directory>*.map.php</directory>
<directory>*.template.php</directory>
</exclude>
</whitelist>
</filter>
<groups>
<exclude>
<group>large</group>
<group>todo</group>
</exclude>
</groups>
<!-- Customize your parameters ! -->
<php>
<const name="CLIENT_ID" value="123456"/>
<const name="CLIENT_SECRET" value="dontTell"/>
<const name="ACCESS_TOKEN" value="fooToken"/>
<const name="REFRESH_TOKEN" value="barFoo"/>
<const name="USER_ID" value="54321"/>
<const name="VERBOSE" value=""/>
</php>
</phpunit>