1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2+ <phpunit
3+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4+ xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/10.5/phpunit.xsd"
5+ bootstrap =" vendor/codeigniter4/framework/system/Test/bootstrap.php"
6+ backupGlobals =" false"
7+ beStrictAboutOutputDuringTests =" true"
8+ colors =" true"
9+ columns =" max"
10+ failOnRisky =" true"
11+ failOnWarning =" true"
12+ cacheDirectory =" build/.phpunit.cache" >
13+ <coverage
14+ includeUncoveredFiles =" true"
15+ pathCoverage =" false"
16+ ignoreDeprecatedCodeUnits =" true"
17+ disableCodeCoverageIgnore =" true" >
18+ <report >
19+ <clover outputFile =" build/logs/clover.xml" />
20+ <html outputDirectory =" build/logs/html" />
21+ <php outputFile =" build/logs/coverage.serialized" />
22+ <text outputFile =" php://stdout" showUncoveredFiles =" false" />
23+ </report >
24+ </coverage >
25+ <testsuites >
26+ <testsuite name =" main" >
27+ <directory >./tests</directory >
28+ </testsuite >
29+ </testsuites >
30+ <logging >
31+ <testdoxHtml outputFile =" build/logs/testdox.html" />
32+ <testdoxText outputFile =" build/logs/testdox.txt" />
33+ <junit outputFile =" build/logs/logfile.xml" />
34+ </logging >
35+ <source >
36+ <include >
37+ <directory suffix =" .php" >./src/</directory >
38+ </include >
39+ <exclude >
40+ <directory suffix =" .php" >./src/Config</directory >
41+ </exclude >
42+ </source >
43+ <php >
44+ <server name =" app.baseURL" value =" http://example.com/" />
45+ <server name =" CODEIGNITER_SCREAM_DEPRECATIONS" value =" 0" />
46+ <!-- Directory containing phpunit.xml -->
47+ <const name =" HOMEPATH" value =" ./" />
48+ <!-- Directory containing the Paths config file -->
49+ <const name =" CONFIGPATH" value =" vendor/codeigniter4/framework/app/Config/" />
50+ <!-- Directory containing the front controller (index.php) -->
51+ <const name =" PUBLICPATH" value =" ./public/" />
52+ <!-- Database configuration -->
53+ <!-- Uncomment to provide your own database for testing
54+ <env name="database.tests.hostname" value="localhost"/>
55+ <env name="database.tests.database" value="tests"/>
56+ <env name="database.tests.username" value="tests_user"/>
57+ <env name="database.tests.password" value=""/>
58+ <env name="database.tests.DBDriver" value="MySQLi"/>
59+ <env name="database.tests.DBPrefix" value="tests_"/>
60+ -->
61+
62+ <!-- Tripay Authentication -->
63+ <env name =" Tripay.stage" value =" " />
64+ <env name =" Tripay.apiKey" value =" " />
65+ <env name =" Tripay.privateKey" value =" " />
66+ <env name =" Tripay.merchantCode" value =" " />
67+ </php >
68+ </phpunit >
0 commit comments