-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
21 lines (21 loc) · 727 Bytes
/
phpunit.xml
File metadata and controls
21 lines (21 loc) · 727 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="vendor/autoload.php"
stopOnFailure="false"
colors="true">
<testsuites>
<testsuite name="public">
<directory suffix="Test.php">./tests/</directory>
</testsuite>
<testsuite name="private">
<directory suffix="Test.php">./private-tests/</directory>
</testsuite>
</testsuites>
<php>
<const name="ENDPOINT_URL" value="https://api-public.sandbox.gdax.com"/>
<const name="USD_ACCOUNT" value=""/>
<const name="ETH_ACCOUNT" value=""/>
<const name="API_KEY" value=""/>
<const name="API_SECRET" value=""/>
<const name="API_PASSPHRASE" value=""/>
</php>
</phpunit>