Cachet/phpunit.xml.dist

24 lines
777 B
Plaintext
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"
stopOnFailure="false"
2015-03-21 02:33:38 -06:00
syntaxCheck="false">
2014-11-16 22:26:08 +00:00
<testsuites>
2015-03-21 02:33:38 -06:00
<testsuite name="Application Test Suite">
<directory>./tests/</directory>
2014-11-16 22:26:08 +00:00
</testsuite>
</testsuites>
2015-03-21 02:33:38 -06:00
<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>
2014-11-16 22:26:08 +00:00
</phpunit>