-
Notifications
You must be signed in to change notification settings - Fork 1
/
phpunit.xml.dist
30 lines (26 loc) · 900 Bytes
/
phpunit.xml.dist
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="./src/Config/Tests/bootstrap.php" colors="true">
<testsuites>
<testsuite name="Config test suite">
<directory suffix="Test.php">./src/Config/Tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>./</directory>
<exclude>
<directory>./external</directory>
</exclude>
</whitelist>
</filter>
<php>
<var name="DB_DSN" value="mysql:dbname=test;host=localhost" />
<var name="DB_USER" value="test" />
<var name="DB_PASSWD" value="" />
<var name="DB_DBNAME" value="test" />
<var name="REDIS_HOST" value="localhost" />
<var name="REDIS_PORT" value="" />
<var name="REDIS_DB" value="2" />
<var name="REDIS_PASS" value="" />
</php>
</phpunit>