firefly-iii/phpunit.xml

35 lines
1.1 KiB
XML
Raw Normal View History

2016-05-15 08:02:07 -05: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"
2016-12-22 12:51:49 -06:00
beStrictAboutOutputDuringTests="true"
2016-12-11 06:16:56 -06:00
stopOnFailure="true">
2016-05-15 08:02:07 -05:00
<testsuites>
2016-12-22 12:51:49 -06:00
<testsuite name="acceptance">
<directory suffix="Test.php">./tests/acceptance</directory>
</testsuite>
<testsuite name="unit">
<directory suffix="Test.php">./tests/unit</directory>
2016-05-15 08:02:07 -05:00
</testsuite>
</testsuites>
<filter>
2016-12-22 12:51:49 -06:00
<whitelist addUncoveredFilesFromWhitelist="true">
2016-09-15 23:19:40 -05:00
<directory suffix=".php">./app</directory>
2016-05-15 08:02:07 -05:00
</whitelist>
2016-12-22 12:51:49 -06:00
<blacklist>
<directory>vendor/</directory>
</blacklist>
2016-05-15 08:02:07 -05:00
</filter>
<php>
<env name="APP_ENV" value="testing"/>
<env name="CACHE_DRIVER" value="array"/>
<env name="SESSION_DRIVER" value="array"/>
<env name="QUEUE_DRIVER" value="sync"/>
</php>
</phpunit>