Cachet/phpunit.xml.dist

44 lines
1.5 KiB
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"
2015-05-25 18:31:45 +01:00
beStrictAboutTestsThatDoNotTestAnything="true"
beStrictAboutOutputDuringTests="true"
2014-11-16 22:26:08 +00:00
bootstrap="bootstrap/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
2016-02-05 14:21:54 +00:00
failOnRisky="true"
failOnWarning="true"
2014-11-16 22:26:08 +00:00
processIsolation="false"
2015-05-25 18:31:45 +01:00
stopOnError="false"
2014-11-16 22:26:08 +00:00
stopOnFailure="false"
2015-05-25 18:31:45 +01:00
verbose="true"
>
2014-11-16 22:26:08 +00:00
<testsuites>
2015-05-25 18:31:45 +01:00
<testsuite name="Cachet Test Suite">
<directory suffix="Test.php">./tests</directory>
2014-11-16 22:26:08 +00:00
</testsuite>
</testsuites>
2015-05-25 18:31:45 +01:00
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./app</directory>
</whitelist>
</filter>
<listeners>
<listener class="CachetHQ\Tests\Cachet\TestListener" file="./tests/TestListener.php" />
</listeners>
2015-03-21 02:33:38 -06:00
<php>
<env name="APP_ENV" value="testing"/>
2016-07-25 08:09:53 +01:00
<env name="APP_DEBUG" value="true"/>
2015-07-24 13:53:24 +01:00
<env name="APP_URL" value="http://localhost"/>
<env name="APP_KEY" value="GCvcgDKMRIN498g52zfVEd9CxDs6PR7q"/>
<env name="DB_DRIVER" value="sqlite"/>
2016-03-24 15:25:48 +00:00
<env name="DB_DATABASE" value=":memory:"/>
2015-03-21 02:33:38 -06:00
<env name="CACHE_DRIVER" value="array"/>
<env name="SESSION_DRIVER" value="array"/>
2015-05-25 18:31:45 +01:00
<env name="MAIL_DRIVER" value="log"/>
2015-03-21 02:33:38 -06:00
<env name="QUEUE_DRIVER" value="sync"/>
</php>
2014-11-16 22:26:08 +00:00
</phpunit>