2016-03-03 11:56:29 -06:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2018-05-09 08:05:17 -05:00
|
|
|
<phpunit
|
|
|
|
bootstrap="tests/bootstrap.php"
|
|
|
|
colors="true"
|
|
|
|
convertErrorsToExceptions="true"
|
|
|
|
convertNoticesToExceptions="true"
|
|
|
|
convertWarningsToExceptions="true"
|
|
|
|
processIsolation="false"
|
|
|
|
stopOnFailure="false">
|
2016-03-03 11:56:29 -06:00
|
|
|
<testsuites>
|
|
|
|
<testsuite name="Application Test Suite">
|
2016-08-22 10:32:05 -05:00
|
|
|
<directory>tests/</directory>
|
2016-03-03 11:56:29 -06:00
|
|
|
</testsuite>
|
2018-05-09 08:05:17 -05:00
|
|
|
|
|
|
|
<testsuite name="Feature">
|
|
|
|
<directory suffix="Test.php">./tests/Feature</directory>
|
|
|
|
</testsuite>
|
|
|
|
|
|
|
|
<testsuite name="Unit">
|
|
|
|
<directory suffix="Test.php">./tests/Unit</directory>
|
|
|
|
</testsuite>
|
2016-03-03 11:56:29 -06:00
|
|
|
</testsuites>
|
2017-08-07 11:32:13 -05:00
|
|
|
<groups>
|
|
|
|
<exclude>
|
|
|
|
<group>mibs</group>
|
|
|
|
</exclude>
|
|
|
|
</groups>
|
2018-05-09 08:05:17 -05:00
|
|
|
<filter>
|
|
|
|
<whitelist processUncoveredFilesFromWhitelist="true">
|
|
|
|
<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"/>
|
|
|
|
</php>
|
2016-03-03 11:56:29 -06:00
|
|
|
</phpunit>
|