forked from phpList/phplist-plugin-restapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml.example
30 lines (29 loc) · 1.21 KB
/
phpunit.xml.example
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
<phpunit colors='true' bootstrap='./tests/phpunit-bootstrap.php'>
<testsuites>
<testsuite name='Primary'>
<directory>./tests</directory>
</testsuite>
</testsuites>
<php>
<!-- Constants -->
<const name='API_URL_BASE_PATH' value=''/>
<const name='API_LOGIN_USERNAME' value='admin'/>
<const name='API_LOGIN_PASSWORD' value='phplist'/>
<!-- Absolute path to system's temporary directory -->
<const name='TMP_PATH' value='/tmp'/>
<!-- Name of the folder housing phpList -->
<const name='PAGE_ROOT' value='/lists'/>
<!-- Name of the admin directory -->
<const name='ADMIN_PATH' value='/admin'/>
<!-- Variables -->
<var name="database_host" value="localhost" />
<var name="DB_PORT" value='3306' />
// !! Change these vars to fit your local config !!
<var name="database_name" value='' />
<var name="database_user" value='' />
<var name="database_password" value='' />
<var name="table_prefix" value='phplist_' />
<var name="usertable_prefix" value='phplist_user_' />
<var name="phplist4-ini-config-file-path" value='' />
</php>
</phpunit>