Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 199
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
Latest commit
43 lines (35 loc) · 1.57 KB
/
Copy pathphpunit.xml.dist
File metadata and controls
43 lines (35 loc) · 1.57 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunitxmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://phpunit.de/phpunit.xsd"
backupGlobals="false"
verbose="true"colors="true">
<testsuites>
<testsuitename="AuthorizeNet Integration Tests">
<directorysuffix="Test.php">.</directory>
</testsuite>
</testsuites>
<filter>
<whitelistprocessUncoveredFilesFromWhitelist="true">
<directorysuffix=".php">./lib</directory>
<exclude>
<directory>./vendor</directory>
<directory>./tests</directory>
<directory>./build</directory>
</exclude>
</whitelist>
</filter>
<php>
<constname="PHPUNIT_TESTSUITE"value="true" />
<!-- Enter your test account credentials to run tests against sandbox. -->
<constname="AUTHORIZENET_API_LOGIN_ID"value="5KP3u95bQpv" />
<constname="AUTHORIZENET_TRANSACTION_KEY"value="346HZ32z3fP4hTG2" />
<constname="AUTHORIZENET_MD5_SETTING"value="" />
<!-- Enter your live account credentials to run tests against production gateway. -->
<constname="MERCHANT_LIVE_API_LOGIN_ID"value="" />
<constname="MERCHANT_LIVE_TRANSACTION_KEY"value="" />
<!-- Card Present Sandbox Credentials -->
<constname="CP_API_LOGIN_ID"value="" />
<constname="CP_TRANSACTION_KEY"value="" />
<constname="AUTHORIZENET_LOG_FILE"value="./testslog" />
</php>
</phpunit>