-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
25 lines (22 loc) · 885 Bytes
/
phpunit.xml
File metadata and controls
25 lines (22 loc) · 885 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
<phpunit bootstrap="./tests/selective/ORM/Tests/TestInit.php">
<testsuites>
<testsuite name="Selective">
<directory>tests/</directory>
</testsuite>
</testsuites>
<php>
<var name="test_dbname" value="selective_test" />
<var name="sqlite_enabled" value="true" />
<var name="sqlite_file" value=":memory:" />
<var name="mysql_enabled" value="true" />
<var name="mysql_hostname" value="localhost" />
<var name="mysql_port" value="localhost" />
<var name="mysql_username" value="root" />
<var name="mysql_password" value="" />
<var name="sqlsrv_enabled" value="true" />
<var name="sqlsrv_host" value="localhost\SQLEXPRESS" />
<var name="sqlsrv_username" value="" />
<var name="sqlsrv_password" value="" />
<var name="sqlsrv_schema" value="dbo" />
</php>
</phpunit>