-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
54 lines (53 loc) · 2.41 KB
/
phpunit.xml.dist
File metadata and controls
54 lines (53 loc) · 2.41 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="vendor/codeigniter4/framework/system/Test/bootstrap.php" backupGlobals="false" colors="true" stopOnError="false" stopOnFailure="false" stopOnIncomplete="false" stopOnSkipped="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd" cacheDirectory=".phpunit.cache">
<coverage includeUncoveredFiles="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>
<php>
<server name="app.baseURL" value="http://example.com/"/>
<!-- Directory containing phpunit.xml -->
<const name="HOMEPATH" value="./"/>
<const name="APPDIR" value="./tests/_support"/>
<const name="VENDORPATH" value="./vendor"/>
<const name="APP_NAMESPACE" value="Tests\Support\"/>
<!-- Directory containing the Paths config file -->
<!-- <const name="CONFIGPATH" value="./vendor/codeigniter4/framework/app/Config/"/>-->
<!-- <const name="CONFIGPATH" value="./tests/_support/Config/"/>-->
<const name="PUBLICPATH" value="./tests/_support/public/"/>
<!-- Test Support files -->
<const name="SUPPORTPATH" value="./tests/_support"/>
<!-- Database configuration -->
<!-- Uncomment to provide your own database for testing
<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.DBPrefix" value="tests_"/>
-->
<env name="database.tests.DBDriver" value="\MKU\Services\Database\Transactional\SQLite3"/>
</php>
<source>
<include>
<directory suffix=".php">./src</directory>
</include>
<exclude>
<!-- <directory suffix=".php">./app/Views</directory>-->
<!-- <file>./app/Config/Routes.php</file>-->
</exclude>
</source>
</phpunit>