CodeIgniter4/phpunit.xml

30 lines
1.1 KiB
XML
Raw Normal View History

2015-08-28 23:08:36 -05:00
<?xml version="1.0" encoding="UTF-8"?>
2016-01-05 23:09:24 -06:00
<phpunit bootstrap="tests/_support/_bootstrap.php"
colors="true"
2015-08-28 23:08:36 -05:00
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false">
<testsuites>
<testsuite name="system">
<directory>./tests/system</directory>
2015-08-28 23:08:36 -05:00
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./system</directory>
2015-12-18 23:42:54 -06:00
<exclude>
<file>./system/CodeIgniter.php</file>
<file>./system/Controller.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>
2015-12-18 23:42:54 -06:00
</exclude>
</whitelist>
</filter>
2015-08-28 23:08:36 -05:00
</phpunit>