2014-05-14 23:21:55 +10:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2021-03-11 00:29:48 -06:00
|
|
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
backupGlobals="false"
|
|
|
|
backupStaticAttributes="false"
|
|
|
|
bootstrap="tests/bootstrap.php"
|
|
|
|
colors="true"
|
|
|
|
convertErrorsToExceptions="true"
|
|
|
|
convertNoticesToExceptions="true"
|
|
|
|
convertWarningsToExceptions="true"
|
|
|
|
processIsolation="false"
|
|
|
|
stopOnFailure="false"
|
|
|
|
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
|
2014-05-14 23:21:55 +10:00
|
|
|
>
|
2021-03-11 00:29:48 -06:00
|
|
|
<coverage>
|
|
|
|
<include>
|
|
|
|
<directory suffix=".php">./modules/</directory>
|
|
|
|
</include>
|
|
|
|
<exclude>
|
|
|
|
<file>./modules/backend/routes.php</file>
|
|
|
|
<file>./modules/cms/routes.php</file>
|
|
|
|
<file>./modules/system/routes.php</file>
|
|
|
|
<directory suffix=".php">./modules/backend/database</directory>
|
|
|
|
<directory suffix=".php">./modules/cms/database</directory>
|
|
|
|
<directory suffix=".php">./modules/system/database</directory>
|
|
|
|
</exclude>
|
|
|
|
</coverage>
|
2014-05-14 23:21:55 +10:00
|
|
|
<testsuites>
|
2021-03-10 15:25:57 -06:00
|
|
|
<testsuite name="Winter CMS Test Suite">
|
2015-01-05 11:30:03 +11:00
|
|
|
<directory>./tests/unit</directory>
|
2014-05-14 23:21:55 +10:00
|
|
|
</testsuite>
|
|
|
|
</testsuites>
|
2015-02-20 22:12:11 +11:00
|
|
|
<php>
|
2021-03-11 00:29:48 -06:00
|
|
|
<env name="APP_ENV" value="testing"/>
|
|
|
|
<env name="CACHE_DRIVER" value="array"/>
|
|
|
|
<env name="SESSION_DRIVER" value="array"/>
|
2015-02-20 22:12:11 +11:00
|
|
|
</php>
|
2019-06-24 07:38:41 +08:00
|
|
|
</phpunit>
|