2017-06-13 23:25:37 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2021-01-23 12:09:16 -08:00
|
|
|
<phpunit
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
backupGlobals="false"
|
|
|
|
backupStaticAttributes="false"
|
|
|
|
bootstrap="bootstrap/tests.php"
|
|
|
|
colors="true"
|
|
|
|
convertErrorsToExceptions="true"
|
|
|
|
convertNoticesToExceptions="true"
|
|
|
|
convertWarningsToExceptions="true"
|
|
|
|
printerClass="NunoMaduro\Collision\Adapters\Phpunit\Printer"
|
|
|
|
processIsolation="false"
|
|
|
|
stopOnFailure="false"
|
|
|
|
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
|
|
|
|
>
|
|
|
|
<coverage processUncoveredFiles="true">
|
|
|
|
<include>
|
|
|
|
<directory suffix=".php">./app</directory>
|
|
|
|
</include>
|
|
|
|
</coverage>
|
2017-06-13 23:25:37 -05:00
|
|
|
<testsuites>
|
2018-05-31 21:45:49 -07:00
|
|
|
<testsuite name="Browser">
|
|
|
|
<directory suffix="Test.php">./tests/Browser/Processes</directory>
|
|
|
|
</testsuite>
|
2018-03-04 22:42:33 -06:00
|
|
|
<testsuite name="Integration">
|
|
|
|
<directory suffix="Test.php">./tests/Integration</directory>
|
2017-06-13 23:25:37 -05:00
|
|
|
</testsuite>
|
|
|
|
<testsuite name="Unit">
|
|
|
|
<directory suffix="Test.php">./tests/Unit</directory>
|
|
|
|
</testsuite>
|
|
|
|
</testsuites>
|
|
|
|
<php>
|
|
|
|
<env name="APP_ENV" value="testing"/>
|
2018-05-20 16:38:27 -07:00
|
|
|
<env name="BCRYPT_ROUNDS" value="4"/>
|
2018-03-04 16:30:16 -06:00
|
|
|
<env name="DB_CONNECTION" value="testing"/>
|
2017-06-13 23:25:37 -05:00
|
|
|
<env name="CACHE_DRIVER" value="array"/>
|
|
|
|
<env name="SESSION_DRIVER" value="array"/>
|
2018-11-26 03:25:18 +03:00
|
|
|
<env name="QUEUE_CONNECTION" value="sync"/>
|
2017-06-15 23:03:22 -05:00
|
|
|
<env name="MAIL_DRIVER" value="array"/>
|
2017-06-13 23:25:37 -05:00
|
|
|
</php>
|
|
|
|
</phpunit>
|