-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
26 lines (26 loc) · 958 Bytes
/
phpunit.xml.dist
File metadata and controls
26 lines (26 loc) · 958 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="vendor/autoload.php">
<php>
<env name="POPULATOR_ADAPTER" value="mysql"/>
<env name="POPULATOR_HOST" value="localhost"/>
<env name="POPULATOR_PORT" value="3306"/>
<env name="POPULATOR_USERNAME" value="root"/>
<env name="POPULATOR_PASSWORD" value=""/>
<env name="POPULATOR_DATABASE" value="populator"/>
<env name="POPULATOR_CHARSET" value="utf8mb4"/>
<env name="POPULATOR_COLLATION" value="utf8mb4_general_ci"/>
</php>
<logging>
<log type="coverage-clover" target="build/logs/clover.xml"/>
</logging>
<testsuites>
<testsuite name="Test suite">
<directory>tests/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src/</directory>
</whitelist>
</filter>
</phpunit>