CodeIgniter4/phpunit.xml
kenjis 9da31d9ab8 Refactor CodeIgniter class
Add Bootstrap class and test for CodeIgniter class
2016-03-30 14:10:58 +09:00

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>