This repository has been archived by the owner on Aug 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 114
/
phpunit.xml.dist
50 lines (42 loc) · 1.56 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.1/phpunit.xsd"
backupGlobals="false"
colors="false"
bootstrap="vendor/autoload.php"
>
<php>
<!--
Dropbox_Credential_Email, Dropbox_Credential_Password
Credentials for your Dropbox Test-Account, those are the ones you use
to login to the Dropbox website.
NOTE: It is highly recommended you create yourself a new test-account as
some tests delete existing data and you don't want that with real data.
-->
<var name="Dropbox_Credential_Email"
value="[email protected]" />
<var name="Dropbox_Credential_Password"
value="insert-secret-password-here" />
<!--
Dropbox_CaCertificateDir
-->
<var name="Dropbox_CaCertificateDir"
value=""/>
<!--
Dropbox_CaCertificateFile
CA Certificate File if not configured on your system. e.g.
"C:\Program Files\Git\bin\curl-ca-bundle.crt"
if you are using git bash under Windows.
-->
<var name="Dropbox_CaCertificateFile"
value=""/>
</php>
<testsuites>
<testsuite name="Integration-Tests">
<directory>integration</directory>
</testsuite>
<testsuite name="Unit-Tests">
<directory>unit</directory>
</testsuite>
</testsuites>
</phpunit>