forked from zendesk/zendesk_api_client_php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
executable file
·24 lines (24 loc) · 892 Bytes
/
phpunit.xml.dist
File metadata and controls
executable file
·24 lines (24 loc) · 892 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version="1.0" encoding="UTF-8" ?>
<phpunit bootstrap="tests/bootstrap.php" colors="true">
<!-- Need credentials for local test
<php>
<env name="SUBDOMAIN" value="" />
<env name="USERNAME" value="" />
<env name="PASSWORD" value="" />
<env name="TOKEN" value="" />
<env name="OAUTH_SECRET" value="" />
<env name="OAUTH_TOKEN" value="" />
<env name="END_USER_USERNAME" value="" />
<env name="END_USER_PASSWORD" value="" />
<env name="END_USER_OAUTH_TOKEN" value="" />
</php>
-->
<testsuites>
<testsuite name="Zendesk API Unit Test Suites">
<directory>./tests/Zendesk/API/UnitTests</directory>
</testsuite>
<testsuite name="Zendesk API Live Test Suites">
<directory>./tests/Zendesk/API/LiveTests</directory>
</testsuite>
</testsuites>
</phpunit>