Pony.fm/phpunit.xml

33 lines
1.1 KiB
XML
Raw Normal View History

2013-07-25 23:33:04 +02: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-08-30 13:22:00 +02:00
syntaxCheck="false">
2013-07-25 23:33:04 +02:00
<testsuites>
<testsuite name="Application Test Suite">
2015-08-30 13:22:00 +02:00
<directory>./tests/</directory>
2013-07-25 23:33:04 +02:00
</testsuite>
</testsuites>
2015-08-30 13:22:00 +02:00
<filter>
<whitelist>
<directory suffix=".php">app/</directory>
</whitelist>
</filter>
<php>
<env name="APP_ENV" value="testing"/>
<env name="APP_KEY" value="CMOxJYitit2cFgI9FbbxJJpWxBBZl6RU"/>
2015-08-30 13:22:00 +02:00
<env name="CACHE_DRIVER" value="array"/>
<env name="SESSION_DRIVER" value="array"/>
<env name="QUEUE_DRIVER" value="sync"/>
<env name="APP_URL" value="http://ponyfm-dev.poni"/>
<env name="DB_CONNECTION" value="memory"/>
<env name="PONYFM_DATASTORE" value="/vagrant/storage/app/testing-datastore"/>
2015-08-30 13:22:00 +02:00
</php>
</phpunit>