mirror of
https://github.com/CachetHQ/Cachet.git
synced 2025-01-17 21:49:01 +01:00
30 lines
1003 B
XML
30 lines
1003 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<phpunit backupGlobals="false"
|
|
backupStaticAttributes="false"
|
|
bootstrap="bootstrap/autoload.php"
|
|
colors="true"
|
|
convertErrorsToExceptions="true"
|
|
convertNoticesToExceptions="true"
|
|
convertWarningsToExceptions="true"
|
|
processIsolation="false"
|
|
stopOnError="false"
|
|
stopOnFailure="false"
|
|
syntaxCheck="true"
|
|
strict="true"
|
|
verbose="true"
|
|
>
|
|
<testsuites>
|
|
<testsuite name="Cachet Test Suite">
|
|
<directory>./app/tests/</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
<filter>
|
|
<whitelist processUncoveredFilesFromWhitelist="true">
|
|
<directory suffix=".php">./app/CachetHQ</directory>
|
|
<directory suffix=".php">./app/controllers</directory>
|
|
<directory suffix=".php">./app/filters</directory>
|
|
<directory suffix=".php">./app/models</directory>
|
|
</whitelist>
|
|
</filter>
|
|
</phpunit>
|