mirror of
https://github.com/codeigniter4/CodeIgniter4.git
synced 2025-02-20 11:44:28 +08:00
30 lines
1.0 KiB
XML
30 lines
1.0 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<phpunit bootstrap="tests/_support/_bootstrap.php"
|
|
colors="true"
|
|
convertErrorsToExceptions="true"
|
|
convertNoticesToExceptions="true"
|
|
convertWarningsToExceptions="true"
|
|
stopOnError="false"
|
|
stopOnFailure="false"
|
|
stopOnIncomplete="false"
|
|
stopOnSkipped="false">
|
|
<testsuites>
|
|
<testsuite name="system">
|
|
<directory>./tests/system</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<filter>
|
|
<whitelist processUncoveredFilesFromWhitelist="true">
|
|
<directory suffix=".php">./system</directory>
|
|
<exclude>
|
|
<file>./system/Bootstrap.php</file>
|
|
<file>./system/ComposerScripts.php</file>
|
|
<file>./system/View/Escaper.php</file>
|
|
<directory suffix=".php">./system/View/Exception</directory>
|
|
<directory suffix=".php">./system/Debug/Toolbar/View</directory>
|
|
</exclude>
|
|
</whitelist>
|
|
</filter>
|
|
</phpunit>
|