forked from ChurchCRM/CRM
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit_mysql.xml
More file actions
27 lines (24 loc) · 824 Bytes
/
phpunit_mysql.xml
File metadata and controls
27 lines (24 loc) · 824 Bytes
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="tests/bootstrap.php" colors="true">
<php>
<var name="db_dsn" value="mysql:dbname=churchcrm_test;host=localhost"/>
<var name="db_username" value="root"/>
<var name="db_password" value=""/>
<ini name="display_errors" value="On" />
<ini name="display_startup_errors" value="On" />
<ini name="error_reporting" value="E_ALL ^ E_DEPRECATED" />
</php>
<testsuites>
<testsuite name="Hello World Test Suite">
<directory>./tests/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>./</directory>
<exclude>
<directory>./tests</directory>
</exclude>
</whitelist>
</filter>
</phpunit>