CodeIgniter4/phpunit.xml.dist

54 lines
1.8 KiB
Plaintext
Raw Normal View History

2015-08-28 23:08:36 -05:00
<?xml version="1.0" encoding="UTF-8"?>
2020-10-30 19:33:12 +00:00
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
bootstrap="system/Test/bootstrap.php"
backupGlobals="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
2020-10-30 18:42:59 +00:00
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">./system</directory>
</include>
<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>
<report>
<clover outputFile="build/logs/clover.xml"/>
</report>
</coverage>
<testsuites>
<testsuite name="System">
<directory>./tests/system</directory>
<exclude>./tests/system/Database</exclude>
</testsuite>
<testsuite name="Database">
<directory>./tests/system/Database</directory>
</testsuite>
</testsuites>
2020-10-30 18:42:59 +00:00
<logging/>
<php>
2020-12-21 17:46:40 +00:00
<env name="XDEBUG_MODE" value="coverage"/>
2020-09-25 14:54:14 +00:00
<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>
2016-03-18 22:04:59 -05:00
</phpunit>