-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
34 lines (34 loc) · 1.22 KB
/
phpunit.xml.dist
File metadata and controls
34 lines (34 loc) · 1.22 KB
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 backupGlobals="false"
backupStaticAttributes="false"
bootstrap="vendor/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false">
<testsuites>
<testsuite name="Application Test Suite">
<directory>./tests/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./src</directory>
</whitelist>
</filter>
<logging>
<log type="coverage-clover" target="build/logs/clover.xml"/>
<log type="coverage-html" target="build/html"/>
</logging>
<php>
<env name="PHP_APP_DEBUG" value="true"/>
<env name="PHP_DATABASE_DATABASE" value="tauthz"/>
<env name="PHP_DB_HOST" value="127.0.0.1"/>
<env name="PHP_DB_PORT" value="3306"/>
<env name="PHP_DB_NAME" value="tauthz"/>
<env name="PHP_DB_USER" value="root"/>
<env name="PHP_DB_PASS" value=""/>
</php>
</phpunit>