-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
31 lines (27 loc) · 912 Bytes
/
phpunit.xml.dist
File metadata and controls
31 lines (27 loc) · 912 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
28
29
30
31
<phpunit beStrictAboutTestsThatDoNotTestAnything="true"
beStrictAboutChangesToGlobalState="true"
beStrictAboutOutputDuringTests="true"
colors="true"
stopOnFailure="true"
bootstrap="./tests/bootstrap.php"
>
<testsuites>
<testsuite name="Query Builder Test Suite">
<directory>./tests/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory>./src/</directory>
</whitelist>
</filter>
<php>
<!--<var name="DB_DSN" value="mysql:dbname=bloatless;host=localhost" />-->
<!--<var name="DB_DSN" value="sqlite:./tests/Fixtures/storage/sqlite.db" />-->
<var name="MYSQL_HOST" value="localhost" />
<var name="MYSQL_USER" value="bloatless" />
<var name="MYSQL_PASSWD" value="bloatless" />
<var name="MYSQL_DB" value="bloatless" />
<var name="SQLITE_DB" value="./tests/Fixtures/storage/sqlite.db" />
</php>
</phpunit>