Cachet/phpunit.xml
2015-01-01 15:58:29 +00:00

29 lines
927 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">./src</directory>
<directory suffix=".php">./app/filters</directory>
<directory suffix=".php">./app/models</directory>
</whitelist>
</filter>
</phpunit>