mirror of
https://github.com/codeigniter4/CodeIgniter4.git
synced 2025-02-20 11:44:28 +08:00
56 lines
1.6 KiB
XML
56 lines
1.6 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<phpunit bootstrap="system/Test/bootstrap.php"
|
|
backupGlobals="false"
|
|
colors="true"
|
|
convertErrorsToExceptions="true"
|
|
convertNoticesToExceptions="true"
|
|
convertWarningsToExceptions="true"
|
|
stopOnError="false"
|
|
stopOnFailure="false"
|
|
stopOnIncomplete="false"
|
|
stopOnSkipped="false">
|
|
<testsuites>
|
|
<testsuite name="system">
|
|
<directory>./tests/system</directory>
|
|
<exclude>./tests/system/Database</exclude>
|
|
</testsuite>
|
|
<testsuite name="database">
|
|
<directory>./tests/system/Database</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<filter>
|
|
<whitelist processUncoveredFilesFromWhitelist="true">
|
|
<directory suffix=".php">./system</directory>
|
|
<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>
|
|
</exclude>
|
|
</whitelist>
|
|
</filter>
|
|
|
|
<logging>
|
|
<log type="coverage-clover" target="build/logs/clover.xml"/>
|
|
</logging>
|
|
|
|
<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/"/>
|
|
</php>
|
|
</phpunit>
|