forked from unisolutions/silverstripe-copybutton
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathphpunit.xml
More file actions
21 lines (21 loc) · 861 Bytes
/
phpunit.xml
File metadata and controls
21 lines (21 loc) · 861 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.0/phpunit.xsd"
bootstrap="vendor/silverstripe/framework/tests/bootstrap.php"
colors="true"
>
<testsuites>
<testsuite name="Default">
<directory>tests/</directory>
</testsuite>
</testsuites>
<php>
<env name="SS_DATABASE_CLASS" value="MySQLDatabase"/>
<env name="SS_DATABASE_SERVER" value="127.0.0.1"/>
<env name="SS_DATABASE_USERNAME" value="root"/>
<env name="SS_DATABASE_PASSWORD" value=""/>
<env name="SS_DATABASE_NAME" value="test_database"/>
<env name="SS_DEFAULT_ADMIN_USERNAME" value="admin"/>
<env name="SS_DEFAULT_ADMIN_PASSWORD" value="admin"/>
</php>
</phpunit>