forked from zammad/zammad-api-client-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml.dist
26 lines (25 loc) · 903 Bytes
/
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
bootstrap="test/bootstrap.php"
>
<testsuites>
<testsuite name="zammad-api-client-php Test Suite">
<directory>./test/</directory>
</testsuite>
</testsuites>
<php>
<!-- Note: unit tests are only possible via username and password -->
<!--
<env name="ZAMMAD_PHP_API_CLIENT_UNIT_TESTS_URL" value="https://...." />
<env name="ZAMMAD_PHP_API_CLIENT_UNIT_TESTS_USERNAME" value="..." />
<env name="ZAMMAD_PHP_API_CLIENT_UNIT_TESTS_PASSWORD" value="..." />
-->
</php>
</phpunit>