-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathphpunit.dist.xml
34 lines (34 loc) · 1.38 KB
/
phpunit.dist.xml
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
32
33
34
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.4/phpunit.xsd" colors="true" bootstrap="vendor/autoload.php" cacheDirectory=".phpunit.cache">
<coverage>
<report>
<clover outputFile="clover.xml"/>
</report>
</coverage>
<testsuites>
<testsuite name="Linna Test Suite">
<directory suffix="Test.php">tests</directory>
</testsuite>
</testsuites>
<logging/>
<php>
<var name="pdo_mysql_dsn" value="mysql:host=0.0.0.0;dbname=linna_db;charset=utf8mb4"/>
<var name="pdo_mysql_user" value="root"/>
<var name="pdo_mysql_password" value="password"/>
<var name="pdo_pgsql_dsn" value="pgsql:dbname=linna_db;host=0.0.0.0"/>
<var name="pdo_pgsql_user" value="postgres"/>
<var name="pdo_pgsql_password" value="password"/>
<var name="pgsql_connection_string" value="host=0.0.0.0 port=5432 dbname=linna_db user=postgres password=password"/>
<var name="mem_host" value="localhost"/>
<var name="mem_port" value="11211"/>
<var name="mongodb_server_string" value="mongodb://localhost:27017"/>
<var name="redis_host" value="127.0.0.1"/>
<var name="redis_port" value="6379"/>
<var name="redis_password" value=""/>
</php>
<source>
<include>
<directory suffix=".php">src</directory>
</include>
</source>
</phpunit>