-
Notifications
You must be signed in to change notification settings - Fork 2
/
phpunit.xml.dist
24 lines (22 loc) · 986 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
<phpunit bootstrap="../../silverstripe/framework/tests/bootstrap.php" colors="true">
<testsuite name="Default">
<directory>tests</directory>
</testsuite>
<filter>
<whitelist addUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src/</directory>
<exclude>
<directory suffix=".php">tests/</directory>
</exclude>
</whitelist>
</filter>
<php>
<env name="SS_DATABASE_CLASS" value="SQLite3Database" force="true" />
<env name="SS_DATABASE_PATH" value=":memory:" force="true" />
<env name="SS_ENVIRONMENT_TYPE" value="dev" force="true" />
<env name="SS_DATABASE_CHOOSE_NAME" value="true" force="true" />
<env name="SS_DEFAULT_ADMIN_USERNAME" value="admin" force="true" />
<env name="SS_DEFAULT_ADMIN_PASSWORD" value="password" force="true" />
<env name="SS_BASE_URL" value="http://localhost" force="true" />
</php>
</phpunit>