Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
Latest commit
86 lines (75 loc) · 2.75 KB
/
Copy pathphpunit.xml.dist
File metadata and controls
86 lines (75 loc) · 2.75 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
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<?xml version="1.0" encoding="UTF-8"?>
<phpunitxmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd"
bootstrap="vendor/codeigniter4/framework/system/Test/bootstrap.php"
backupGlobals="false"
beStrictAboutOutputDuringTests="true"
colors="true"
executionOrder="random"
failOnRisky="true"
failOnWarning="true"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
cacheDirectory="build/.phpunit.cache"
beStrictAboutCoverageMetadata="true">
<coverageincludeUncoveredFiles="true">
<report>
<cloveroutputFile="build/phpunit/clover.xml"/>
<htmloutputDirectory="build/phpunit/html"/>
<phpoutputFile="build/phpunit/coverage.serialized"/>
<textoutputFile="php://stdout"showUncoveredFiles="false"/>
<xmloutputDirectory="build/phpunit/xml-coverage"/>
</report>
</coverage>
<testsuites>
<testsuitename="main">
<directory>./tests</directory>
</testsuite>
</testsuites>
<extensions>
<bootstrapclass="Nexus\PHPUnit\Tachycardia\TachycardiaExtension">
<parametername="time-limit"value="0.50"/>
<parametername="report-count"value="30"/>
<parametername="format"value="table"/>
</bootstrap>
</extensions>
<logging>
<testdoxHtmloutputFile="build/phpunit/testdox.html"/>
<testdoxTextoutputFile="build/phpunit/testdox.txt"/>
<junitoutputFile="build/phpunit/junit.xml"/>
</logging>
<php>
<envname="XDEBUG_MODE"value="coverage"/>
<servername="app.baseURL"value="https://example.com/"/>
<constname="cache.handler"value="dummy"/>
<!-- Directory containing phpunit.xml -->
<constname="HOMEPATH"value="./"/>
<!-- Directory containing the Paths config file -->
<constname="CONFIGPATH"value="./app/Config/"/>
<!-- Directory containing the front controller (index.php) -->
<constname="PUBLICPATH"value="./public/"/>
<!-- https://getcomposer.org/xdebug -->
<envname="COMPOSER_DISABLE_XDEBUG_WARN"value="1"/>
<!-- Database configuration -->
<envname="database.tests.strictOn"value="true"/>
<!-- Uncomment to use alternate testing database configuration
<env name="database.tests.hostname" value="localhost"/>
<env name="database.tests.database" value="tests"/>
<env name="database.tests.username" value="tests_user"/>
<env name="database.tests.password" value=""/>
<env name="database.tests.DBDriver" value="MySQLi"/>
<env name="database.tests.DBPrefix" value="tests_"/>
-->
</php>
<source>
<include>
<directorysuffix=".php">./app/</directory>
</include>
<exclude>
<directorysuffix=".php">./app/Config</directory>
<directorysuffix=".php">./app/Views</directory>
</exclude>
</source>
</phpunit>