forked from ddeboer/guzzle-aws
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml.dist
40 lines (35 loc) · 1.26 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="./Tests/bootstrap.php" colors="true">
<php>
<!--
Change the following value to the path of your Guzzle installation
e.g. /Users/michael/projects/guzzle
-->
<server name="GUZZLE" value="${path_to_guzzle}" />
<!--
This value specifies the path to the test services.xml file that
passes arguments to a service builder
-->
<server name="GUZZLE_SERVICE_FILE" value="./Tests/services.xml" />
<!--
Guzzle tries to figure out the path to mock files automatically.
Set the following value to "1" if your Guzzle service contains
multiple clients under one service namespace (e.g. Aws\S3, Aws\Sqs)
-->
<server name="GUZZLE_SERVICE_MULTI" value="1" />
</php>
<testsuites>
<testsuite name="guzzle-service">
<directory suffix="Test.php">./Tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>./</directory>
<exclude>
<directory>./Tests</directory>
<directory>./docs</directory>
</exclude>
</whitelist>
</filter>
</phpunit>