firefly-iii/phpunit.xml

45 lines
1.5 KiB
XML
Raw Normal View History

2014-06-28 02:41:44 -05:00
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="bootstrap/autoload.php"
2014-07-27 13:29:58 -05:00
colors="true"
2014-06-28 02:41:44 -05:00
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
verbose="true"
stopOnFailure="true"
strict="false"
2014-11-19 14:16:48 -06:00
syntaxCheck="false">
2014-07-02 15:12:22 -05:00
<filter>
2014-11-19 14:16:48 -06:00
<whitelist processUncoveredFilesFromWhitelist="true">
2014-07-02 15:12:22 -05:00
<directory suffix=".php">./app/models</directory>
<directory suffix=".php">./app/controllers</directory>
<directory suffix=".php">./app/events</directory>
<directory suffix=".php">./app/extensions</directory>
<directory suffix=".php">./app/queue</directory>
<directory suffix=".php">./app/helpers</directory>
2014-11-19 14:16:48 -06:00
<directory suffix=".php">./app/lib/FireflyIII</directory>
2014-07-02 15:12:22 -05:00
<exclude>
<file>./app/controllers/BaseController.php</file>
</exclude>
</whitelist>
</filter>
<logging>
<log type="coverage-clover" target="build/logs/clover.xml"/>
</logging>
2014-06-28 02:41:44 -05:00
<testsuites>
<testsuite name="Application Test Suite">
<directory>./app/tests/</directory>
</testsuite>
2015-01-01 23:26:04 -06:00
<testsuite name="CodeCeption">
<directory>./tests/unit/</directory>
</testsuite>
2014-06-28 02:41:44 -05:00
</testsuites>
</phpunit>