CodeIgniter4/phpunit.xml

22 lines
673 B
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="AllTests">
<directory>./tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./system</directory>
</whitelist>
</filter>
</phpunit>