1
0
mirror of https://github.com/cydrobolt/polr.git synced 2024-09-18 19:52:26 +02:00
polr/phpunit.xml

31 lines
1022 B
XML
Raw Normal View History

2015-11-03 05:13:32 +01:00
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="bootstrap/app.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>
<filter>
<whitelist>
<directory suffix=".php">app/</directory>
</whitelist>
</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"/>
2016-09-11 22:06:30 +02:00
<env name="SETTING_REDIRECT_404" value="true"/>
2016-09-08 15:05:24 +02:00
<env name="SETTING_INDEX_REDIRECT" value="http://redirect.polr.me/"/>
2015-11-03 05:13:32 +01:00
</php>
</phpunit>