forked from codeigniter4/CodeIgniter4
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
Latest commit
62 lines (62 loc) · 2.39 KB
/
Copy pathphpunit.xml.dist
File metadata and controls
62 lines (62 loc) · 2.39 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd"
bootstrap="system/Test/bootstrap.php"
backupGlobals="false"
beStrictAboutOutputDuringTests="true"
colors="true"
columns="max"
failOnRisky="true"
failOnWarning="true"
cacheDirectory="build/.phpunit.cache">
<coverage
pathCoverage="false"
ignoreDeprecatedCodeUnits="true"
disableCodeCoverageIgnore="true">
<report>
<cloveroutputFile="build/logs/clover.xml"/>
<htmloutputDirectory="build/coverage/html"highLowerBound="80"/>
<textoutputFile="build/coverage/coverage.txt"/>
</report>
</coverage>
<extensions>
<bootstrapclass="Nexus\PHPUnit\Tachycardia\TachycardiaExtension">
<parametername="time-limit"value="0.50" />
<parametername="report-count"value="30" />
</bootstrap>
</extensions>
<testsuites>
<testsuitename="System">
<directory>tests/system</directory>
</testsuite>
</testsuites>
<source>
<include>
<directorysuffix=".php">system</directory>
</include>
<exclude>
<directory>system/Commands/Generators/Views</directory>
<directory>system/Debug/Toolbar/Views</directory>
<directory>system/Pager/Views</directory>
<directory>system/ThirdParty</directory>
<directory>system/Validation/Views</directory>
<file>system/bootstrap.php</file>
<file>system/ComposerScripts.php</file>
<file>system/Config/Routes.php</file>
<file>system/Test/bootstrap.php</file>
<file>system/Test/ControllerTester.php</file>
<file>system/Test/FeatureTestCase.php</file>
</exclude>
</source>
<php>
<servername="app.baseURL"value="http://example.com/"/>
<servername="CODEIGNITER_SCREAM_DEPRECATIONS"value="1"/>
<!-- 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/"/>
</php>
</phpunit>