2012-05-09 10:43:56 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
<phpunit backupGlobals="false"
|
|
|
|
|
backupStaticAttributes="false"
|
2017-07-27 14:04:51 -07:00
|
|
|
bootstrap="vendor/autoload.php"
|
|
|
|
|
colors="true"
|
2012-05-09 10:43:56 -04:00
|
|
|
convertErrorsToExceptions="true"
|
|
|
|
|
convertNoticesToExceptions="true"
|
|
|
|
|
convertWarningsToExceptions="true"
|
|
|
|
|
processIsolation="false"
|
2017-07-27 14:04:51 -07:00
|
|
|
stopOnFailure="false">
|
|
|
|
|
<testsuites>
|
|
|
|
|
<testsuite name="Feature">
|
|
|
|
|
<directory suffix="Test.php">./tests/Feature</directory>
|
|
|
|
|
</testsuite>
|
2012-07-04 17:13:44 -04:00
|
|
|
|
2017-07-27 14:04:51 -07:00
|
|
|
<testsuite name="Unit">
|
|
|
|
|
<directory suffix="Test.php">./tests/Unit</directory>
|
|
|
|
|
</testsuite>
|
|
|
|
|
</testsuites>
|
|
|
|
|
<filter>
|
|
|
|
|
<whitelist processUncoveredFilesFromWhitelist="true">
|
|
|
|
|
<directory suffix=".php">./app</directory>
|
|
|
|
|
</whitelist>
|
|
|
|
|
</filter>
|
|
|
|
|
<php>
|
|
|
|
|
<env name="APP_ENV" value="testing"/>
|
|
|
|
|
<env name="CACHE_DRIVER" value="memcached"/>
|
|
|
|
|
</php>
|
2012-05-09 10:43:56 -04:00
|
|
|
</phpunit>
|