2016-05-19 15:01:28 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<phpunit backupGlobals="false"
|
|
|
|
backupStaticAttributes="false"
|
2017-09-04 19:34:39 +01:00
|
|
|
bootstrap="vendor/autoload.php"
|
2016-05-19 15:01:28 +01:00
|
|
|
colors="true"
|
|
|
|
convertErrorsToExceptions="true"
|
|
|
|
convertNoticesToExceptions="true"
|
|
|
|
convertWarningsToExceptions="true"
|
2020-06-13 16:59:46 +01:00
|
|
|
printerClass="NunoMaduro\Collision\Adapters\Phpunit\Printer"
|
2016-05-19 15:01:28 +01:00
|
|
|
processIsolation="false"
|
2019-10-27 16:15:14 +00:00
|
|
|
stopOnFailure="true"
|
|
|
|
>
|
2016-05-19 15:01:28 +01:00
|
|
|
<testsuites>
|
2017-08-11 21:02:03 +01:00
|
|
|
<testsuite name="Unit">
|
2017-02-18 12:27:21 +00:00
|
|
|
<directory suffix="Test.php">./tests/Unit</directory>
|
2016-05-19 15:01:28 +01:00
|
|
|
</testsuite>
|
2019-01-27 13:50:04 +00:00
|
|
|
|
|
|
|
<testsuite name="Feature">
|
|
|
|
<directory suffix="Test.php">./tests/Feature</directory>
|
|
|
|
</testsuite>
|
2016-05-19 15:01:28 +01:00
|
|
|
</testsuites>
|
|
|
|
<php>
|
|
|
|
<env name="APP_ENV" value="testing"/>
|
2019-01-27 13:50:04 +00:00
|
|
|
<env name="BCRYPT_ROUNDS" value="4"/>
|
2016-05-19 15:01:28 +01:00
|
|
|
<env name="CACHE_DRIVER" value="array"/>
|
2019-01-27 13:50:04 +00:00
|
|
|
<env name="MAIL_DRIVER" value="array"/>
|
|
|
|
<env name="QUEUE_CONNECTION" value="sync"/>
|
2017-02-24 10:04:35 +00:00
|
|
|
<env name="SESSION_DRIVER" value="array"/>
|
2019-03-29 20:42:11 +00:00
|
|
|
<env name="TELESCOPE_ENABLED" value="false"/>
|
2020-12-31 13:34:55 +00:00
|
|
|
<ini name="memory_limit" value="512M"/>
|
2016-05-19 15:01:28 +01:00
|
|
|
</php>
|
2020-12-31 13:34:55 +00:00
|
|
|
<coverage pathCoverage="true" includeUncoveredFiles="true" processUncoveredFiles="true">
|
|
|
|
<include>
|
|
|
|
<directory suffix=".php">./app</directory>
|
|
|
|
</include>
|
|
|
|
<report>
|
|
|
|
<html outputDirectory="./public/coverage"/>
|
|
|
|
</report>
|
|
|
|
</coverage>
|
2016-05-19 15:01:28 +01:00
|
|
|
</phpunit>
|