-
-
Notifications
You must be signed in to change notification settings - Fork 43
/
phpunit.xml.dist
66 lines (66 loc) · 2.35 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<?xml version="1.0"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.5/phpunit.xsd"
bootstrap="vendor/codeigniter4/framework/system/Test/bootstrap.php"
backupGlobals="false"
beStrictAboutOutputDuringTests="true"
colors="true"
columns="max"
failOnRisky="true"
failOnWarning="true"
displayDetailsOnTestsThatTriggerDeprecations="true"
displayDetailsOnTestsThatTriggerErrors="true"
displayDetailsOnTestsThatTriggerNotices="true"
displayDetailsOnTestsThatTriggerWarnings="true"
displayDetailsOnPhpunitDeprecations="true"
cacheDirectory="build/.phpunit.cache"
>
<coverage
pathCoverage="false"
ignoreDeprecatedCodeUnits="true"
disableCodeCoverageIgnore="true">
<report>
<clover outputFile="build/logs/clover.xml" />
<html outputDirectory="build/logs/html" />
<php outputFile="build/logs/coverage.serialized" />
<text outputFile="php://stdout" showUncoveredFiles="false" />
</report>
</coverage>
<testsuites>
<testsuite name="App">
<directory>./tests</directory>
</testsuite>
</testsuites>
<logging>
<testdoxHtml outputFile="build/logs/testdox.html" />
<testdoxText outputFile="build/logs/testdox.txt" />
<junit outputFile="build/logs/logfile.xml" />
</logging>
<source>
<include>
<directory suffix=".php">./app</directory>
</include>
<exclude>
<directory suffix=".php">./app/Views</directory>
<file>./app/Config/Routes.php</file>
</exclude>
</source>
<php>
<server name="app.baseURL" value="http://example.com/" />
<!-- Directory containing phpunit.xml -->
<const name="HOMEPATH" value="./" />
<!-- Directory containing the Paths config file -->
<const name="CONFIGPATH" value="./app/Config/" />
<!-- Directory containing the front controller (index.php) -->
<const name="PUBLICPATH" value="./public/" />
<!-- Database configuration -->
<env name="database.tests.hostname" value="mariadb" />
<env name="database.tests.database" value="test" />
<env name="database.tests.username" value="castopod" />
<env name="database.tests.password" value="castopod" />
<env name="database.tests.DBDriver" value="MySQLi" />
<env name="database.tests.DBPrefix" value="tests_" />
<env name="restapi.enabled" value="true" />
</php>
</phpunit>