-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml.dist
28 lines (28 loc) · 1.12 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
<?xml version="1.0" encoding="UTF-8" ?>
<phpunit bootstrap="bootstrap.php"
backupGlobals="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
colors="true">
<php>
<const name="IN_serendipity" value="true"/>
<const name="IS_installed" value="true"/>
<const name="USERLEVEL_ADMIN" value="255"/>
<const name="USERLEVEL_CHIEF" value="1"/>
<const name="USERLEVEL_EDITOR" value="0"/>
<const name="DB_DSN" value="sqlite:dbname=s9y_test;host=localhost" />
<const name="DB_HOST" value="localhost" />
<const name="DB_TYPE" value="pdo-sqlite" />
<const name="DB_USER" value="s9y_test" />
<const name="DB_PASSWD" value="s9y_test" />
<const name="DB_DBNAME" value="s9y_test" />
<const name="TEST_DB" value="test.db" />
<const name="PATH_SMARTY_COMPILE" value="templates_c" />
</php>
<testsuites>
<testsuite name="SerendipityPlugins">
<directory>../../plugins/*/tests</directory>
</testsuite>
</testsuites>
</phpunit>