firefly-iii/phpunit.xml

34 lines
1.0 KiB
XML
Raw Normal View History

2015-02-05 21:39:52 -06: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"
stopOnFailure="false"
syntaxCheck="false">
<testsuites>
<testsuite name="Application Test Suite">
<directory>./tests/</directory>
</testsuite>
</testsuites>
2015-02-27 13:52:49 -06:00
<filter>
<whitelist>
<directory suffix=".php">./app</directory>
</whitelist>
</filter>
2015-02-27 14:15:21 -06:00
<!-- code coverage -->
<logging>
<log type="coverage-clover" target="./storage/coverage/clover.xml" charset="UTF-8" />
</logging>
2015-02-05 21:39:52 -06:00
<php>
<env name="APP_ENV" value="testing"/>
<env name="CACHE_DRIVER" value="array"/>
<env name="SESSION_DRIVER" value="array"/>
2015-02-27 13:45:17 -06:00
<env name="QUEUE_DRIVER" value="sync"/>
2015-02-05 21:39:52 -06:00
</php>
2015-02-27 13:45:17 -06:00
</phpunit>