forked from rgeyer/rs_guzzle_client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml.dst
51 lines (51 loc) · 2.38 KB
/
phpunit.xml.dst
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="./Tests/bootstrap.php"
colors="true"
verbose="true"
stopOnFailure="false">
<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" />
<!-- Change to your RightScale acount # -->
<server name="ACCT_NUM" value="" />
<!-- Change to your RightScale account email -->
<server name="EMAIL" value="" />
<!-- Change to your RightScale account password -->
<server name="PASSWORD" value="" />
<!-- Change to the name of a ServerTemplate which can be launched without any input changes (Base ServerTemplate for Linux recommended) -->
<server name="ST_NAME" value="Base ServerTemplate for Linux" />
<!-- Change to the name of an (EBS backed) ServerTemplate which can be launched without any input changes (Base ServerTemplate for Linux clone with EBS image recommended) -->
<server name="ST_EBS_NAME" value="Base ServerTemplate for Linux (EBS)" />
<!--
Change to the ID of an audit entry in your account.
Necessary since I can't see any way to list audit entry ids
for a server or other object
-->
<server name="AUDIT_ID" value="1" />
<!-- Change to the ID of a cloud which supports Security Groups -->
<server name="SECGRP_CLOUD_ID" value="1999" />
<!-- Populate Tests/mock with raw HTTP requests and responses from the tests -->
<server name="HTTP_TRACE" value="false" />
<!-- For the mocks created above, strip out sensitive bits like SSH keys, account numbers, and ids -->
<server name="OBFUSCATE_IDS" value="false" />
</php>
<logging>
<log type="coverage-html" target="test_reports/coverage" charset="UTF-8"
yui="true" highlight="false"
lowUpperBound="35" highLowerBound="70"/>
</logging>
<testsuites>
<testsuite name="guzzle-service-guzzle-rs-1_0">
<directory suffix="Test.php">./Tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>./</directory>
<exclude>
<directory>./Tests</directory>
<directory>./docs</directory>
</exclude>
</whitelist>
</filter>
</phpunit>