You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.6 KiB
45 lines
1.6 KiB
<?xml version="1.0" encoding="UTF-8"?> |
|
<phpunit bootstrap="tests/_support/_bootstrap.php" |
|
backupGlobals="false" |
|
colors="true" |
|
convertErrorsToExceptions="true" |
|
convertNoticesToExceptions="true" |
|
convertWarningsToExceptions="true" |
|
stopOnError="false" |
|
stopOnFailure="false" |
|
stopOnIncomplete="false" |
|
stopOnSkipped="false"> |
|
<testsuites> |
|
<testsuite name="app"> |
|
<directory>./tests</directory> |
|
<exclude>./tests/system</exclude> |
|
</testsuite> |
|
<testsuite name="system"> |
|
<directory>./tests/system</directory> |
|
<exclude>./tests/system/Database</exclude> |
|
</testsuite> |
|
<testsuite name="database"> |
|
<directory>./tests/system/Database</directory> |
|
</testsuite> |
|
</testsuites> |
|
|
|
<filter> |
|
<whitelist processUncoveredFilesFromWhitelist="true"> |
|
<directory suffix=".php">./system</directory> |
|
<exclude> |
|
<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/Commands/Sessions/Views/migration.tpl.php</file> |
|
<file>./system/ComposerScripts.php</file> |
|
<file>./system/Config/Routes.php</file> |
|
</exclude> |
|
</whitelist> |
|
</filter> |
|
|
|
<logging> |
|
<log type="coverage-clover" target="build/logs/clover.xml"/> |
|
</logging> |
|
</phpunit>
|
|
|