forked from zendesk/zendesk_api_client_php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml.dist
executable file
·33 lines (32 loc) · 1.4 KB
/
phpunit.xml.dist
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
<?xml version="1.0" encoding="UTF-8" ?>
<phpunit
bootstrap="tests/bootstrap.php"
colors="true"
backupGlobals="false"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
>
<php>
<env name="SUBDOMAIN" value=""/>
<env name="USERNAME" value="[email protected]"/>
<env name="TOKEN" value="zgS0d8hrK13DgVs6OHT7OVS3G4MZQSUvleMyUJnC"/>
<env name="OAUTH_SECRET" value="ea974e907f363a05c60be3120f336439bf4744c2285b4c8a9c902b5453497bae"/>
<env name="OAUTH_TOKEN" value="4924186d99cfb4bb7a482a4307fb5f9a3a052d0c555ebb866f975b6084e38efd"/>
<env name="END_USER_USERNAME" value="[email protected]"/>
<env name="END_USER_PASSWORD" value="123456"/>
<env name="END_USER_OAUTH_TOKEN" value="e0a6eaa33ac9bbabc50a43ce388a35227e5d48975c1266006239ae0da4b3b9e1"/>
<env name="SCHEME" value="http"/>
<env name="HOSTNAME" value="localhost"/>
<env name="PORT" value="8080"/>
<env name="AUTH_STRATEGY" value="oauth"/>
</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>