mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-27 03:10:32 -06:00
45 lines
1.5 KiB
XML
45 lines
1.5 KiB
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"
|
|
verbose="true"
|
|
stopOnFailure="true"
|
|
strict="false"
|
|
syntaxCheck="false">
|
|
|
|
|
|
<filter>
|
|
<whitelist processUncoveredFilesFromWhitelist="true">
|
|
<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>
|
|
<directory suffix=".php">./app/lib/FireflyIII</directory>
|
|
<exclude>
|
|
<file>./app/controllers/BaseController.php</file>
|
|
</exclude>
|
|
</whitelist>
|
|
|
|
</filter>
|
|
|
|
<logging>
|
|
<log type="coverage-clover" target="build/logs/clover.xml"/>
|
|
</logging>
|
|
|
|
<testsuites>
|
|
<testsuite name="Application Test Suite">
|
|
<directory>./app/tests/</directory>
|
|
</testsuite>
|
|
<testsuite name="CodeCeption">
|
|
<directory>./tests/unit/</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
</phpunit>
|