-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
31 lines (26 loc) · 1.23 KB
/
phpunit.xml.dist
File metadata and controls
31 lines (26 loc) · 1.23 KB
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
29
30
31
<phpunit bootstrap="./phpunit.php">
<testsuites>
<testsuite name="atlas/info">
<directory>./tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./src</directory>
</whitelist>
</filter>
<php>
<var name="Atlas\Info\MysqlInfoTest:dsn" value="mysql:host=127.0.0.1" />
<var name="Atlas\Info\MysqlInfoTest:username" value="root" />
<var name="Atlas\Info\MysqlInfoTest:password" value="" />
<var name="Atlas\Info\PgsqlInfoTest:dsn" value="pgsql:host=127.0.0.1" />
<var name="Atlas\Info\PgsqlInfoTest:username" value="postgres" />
<var name="Atlas\Info\PgsqlInfoTest:password" value="" />
<var name="Atlas\Info\SqliteInfoTest:dsn" value="sqlite::memory:" />
<var name="Atlas\Info\SqliteInfoTest:username" value="" />
<var name="Atlas\Info\SqliteInfoTest:password" value="" />
<var name="Atlas\Info\SqlsrvInfoTest:dsn" value="sqlsrv:Server=localhost" />
<var name="Atlas\Info\SqlsrvInfoTest:username" value="sa" />
<var name="Atlas\Info\SqlsrvInfoTest:password" value="Admin@dm1n" />
</php>
</phpunit>