-
Notifications
You must be signed in to change notification settings - Fork 11
/
phpunit.dist.xml
54 lines (52 loc) · 1.85 KB
/
phpunit.dist.xml
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
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.5/phpunit.xsd"
backupGlobals="true"
backupStaticAttributes="false"
cacheTokens="false"
colors="false"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
forceCoversAnnotation="false"
mapTestClassNameToCoveredClassName="false"
printerClass="PHPUnit_TextUI_ResultPrinter"
processIsolation="false"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
bootstrap="bootstrap.php"
verbose="true">
<testsuites>
<testsuite name="eNom Pro Tests">
<directory suffix=".php">tests/</directory>
</testsuite>
</testsuites>
<!--
<groups>
<include>
<group>stats</group>
</include>
</groups>
<logging>
<log type="coverage-html" target="/Volumes/Build/enom_pro_coverage/" charset="UTF-8"
highlight="false" lowUpperBound="35" highLowerBound="70"/>
</logging>
-->
<php>
<const name="ENOM_PRO_TEMP" value="/var/tmp/" />
<const name="WHMCS" value="TRUE" />
<const name="MYSQL_HOST" value="pv.io" />
<const name="MYSQL_USER" value="username" />
<const name="MYSQL_PASS" value="password" />
<const name="MYSQL_DB" value="mycircle_whmcs" />
<const name="UNIT_TESTS" value="TRUE" />
<!-- Whitelist IP here: http://resellertest.enom.com/resellers/reseller-testaccount.aspx -->
<const name="ENOM_USERNAME" value="circletree" />
<const name="ENOM_PASSWORD" value="57rCT9Jk4zZfjcwTJucH" />
<const name="WHMCS_API_UN" value="api" />
<const name="WHMCS_API_PW" value="12345" />
<const name="WHMCS_API_URL" value="http://localhost/whmcs/includes/api.php" />
</php>
</phpunit>