forked from Dalee/pp-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
21 lines (21 loc) · 700 Bytes
/
Copy pathphpunit.xml
File metadata and controls
21 lines (21 loc) · 700 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/5.2/phpunit.xsd"
backupGlobals="false"
colors="true"
bootstrap="tests/bootstrap.php">
<php>
<env name="DB_TYPE" value="pgsql" />
<env name="DB_NAME" value="not_exists" />
<env name="DB_HOST" value="not_exists" />
<env name="DB_PORT" value="0" />
<env name="DB_USER" value="not_exists" />
<env name="DB_PASSWORD" value="not_exists" />
<env name="DB_ENCODING" value="utf-8" />
</php>
<testsuites>
<testsuite name="unit">
<directory suffix=".php">tests/Unit</directory>
</testsuite>
</testsuites>
</phpunit>