Cachet/phpunit.xml

30 lines
1003 B
XML
Raw Normal View History

2014-11-16 22:26:08 +00:00
<?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"
2014-12-21 11:40:47 +00:00
stopOnError="false"
2014-11-16 22:26:08 +00:00
stopOnFailure="false"
2014-12-21 11:40:47 +00:00
syntaxCheck="true"
strict="true"
verbose="true"
2014-11-16 22:26:08 +00:00
>
<testsuites>
2014-12-21 11:40:47 +00:00
<testsuite name="Cachet Test Suite">
2014-11-16 22:26:08 +00:00
<directory>./app/tests/</directory>
</testsuite>
</testsuites>
2014-12-21 11:40:47 +00:00
<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>
2014-11-16 22:26:08 +00:00
</phpunit>