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>
|
2020-02-19 11:41:02 -05:00
|
|
|
<testsuites>
|
2021-01-26 20:08:36 +07:00
|
|
|
<testsuite name="System">
|
2020-02-19 11:41:02 -05:00
|
|
|
<directory>./tests/system</directory>
|
|
|
|
<exclude>./tests/system/Database</exclude>
|
|
|
|
</testsuite>
|
2021-01-26 20:08:36 +07:00
|
|
|
<testsuite name="Database">
|
2020-02-19 11:41:02 -05:00
|
|
|
<directory>./tests/system/Database</directory>
|
|
|
|
</testsuite>
|
|
|
|
</testsuites>
|
2020-10-30 18:42:59 +00:00
|
|
|
<logging/>
|
2020-02-19 11:41:02 -05:00
|
|
|
<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/"/>
|
2020-02-19 23:49:04 +00:00
|
|
|
<!-- 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/"/>
|
2020-02-19 11:41:02 -05:00
|
|
|
</php>
|
2016-03-18 22:04:59 -05:00
|
|
|
</phpunit>
|