Attendize/phpunit.xml

26 lines
868 B
XML
Raw Normal View History

2016-02-29 15:59:36 +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"
syntaxCheck="false">
<testsuites>
<testsuite name="Application Test Suite">
<directory>./tests/</directory>
</testsuite>
</testsuites>
<php>
<env name="APP_ENV" value="testing"/>
<env name="CACHE_DRIVER" value="array"/>
<env name="SESSION_DRIVER" value="array"/>
2016-04-27 23:06:17 +00:00
<env name="MAIL_DRIVER" value="log"/>
<env name="DB_HOST" value="db"/>
<env name="DB_DATABASE" value="attendize"/>
2016-02-29 15:59:36 +00:00
</php>
</phpunit>