2016-05-15 15:02:07 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<phpunit backupGlobals="false"
|
|
|
|
backupStaticAttributes="false"
|
2017-09-09 21:57:24 +02:00
|
|
|
bootstrap="vendor/autoload.php"
|
2016-05-15 15:02:07 +02:00
|
|
|
colors="true"
|
|
|
|
convertErrorsToExceptions="true"
|
|
|
|
convertNoticesToExceptions="true"
|
|
|
|
convertWarningsToExceptions="true"
|
|
|
|
processIsolation="false"
|
2017-09-12 18:24:42 +02:00
|
|
|
stopOnFailure="true">
|
2016-05-15 15:02:07 +02:00
|
|
|
<testsuites>
|
2017-09-09 21:57:24 +02:00
|
|
|
<testsuite name="Feature">
|
2017-02-12 11:25:17 +01:00
|
|
|
<directory suffix="Test.php">./tests/Feature</directory>
|
2016-12-22 19:51:49 +01:00
|
|
|
</testsuite>
|
2017-02-12 11:25:17 +01:00
|
|
|
|
2017-09-09 21:57:24 +02:00
|
|
|
<testsuite name="Unit">
|
2017-02-12 11:25:17 +01:00
|
|
|
<directory suffix="Test.php">./tests/Unit</directory>
|
2016-05-15 15:02:07 +02:00
|
|
|
</testsuite>
|
|
|
|
</testsuites>
|
|
|
|
<filter>
|
2017-09-09 21:57:24 +02:00
|
|
|
<whitelist processUncoveredFilesFromWhitelist="true">
|
2016-09-16 06:19:40 +02:00
|
|
|
<directory suffix=".php">./app</directory>
|
2016-05-15 15:02:07 +02:00
|
|
|
</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"/>
|
|
|
|
</php>
|
|
|
|
</phpunit>
|