2017-06-14 06:25:37 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<phpunit backupGlobals="false"
|
|
|
|
backupStaticAttributes="false"
|
2018-03-04 23:30:16 +01:00
|
|
|
bootstrap="bootstrap/tests.php"
|
2017-06-14 06:25:37 +02:00
|
|
|
colors="true"
|
|
|
|
convertErrorsToExceptions="true"
|
|
|
|
convertNoticesToExceptions="true"
|
|
|
|
convertWarningsToExceptions="true"
|
2018-02-10 21:57:19 +01:00
|
|
|
printerClass="Codedungeon\PHPUnitPrettyResultPrinter\Printer"
|
2017-06-14 06:25:37 +02:00
|
|
|
processIsolation="false"
|
|
|
|
stopOnFailure="false">
|
|
|
|
<testsuites>
|
2018-06-01 06:45:49 +02:00
|
|
|
<testsuite name="Browser">
|
|
|
|
<directory suffix="Test.php">./tests/Browser/Processes</directory>
|
|
|
|
</testsuite>
|
2018-03-05 05:42:33 +01:00
|
|
|
<testsuite name="Integration">
|
|
|
|
<directory suffix="Test.php">./tests/Integration</directory>
|
2017-06-14 06:25:37 +02:00
|
|
|
</testsuite>
|
|
|
|
<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"/>
|
2018-05-21 01:38:27 +02:00
|
|
|
<env name="BCRYPT_ROUNDS" value="4"/>
|
2018-03-04 23:30:16 +01:00
|
|
|
<env name="DB_CONNECTION" value="testing"/>
|
2017-06-14 06:25:37 +02:00
|
|
|
<env name="CACHE_DRIVER" value="array"/>
|
|
|
|
<env name="SESSION_DRIVER" value="array"/>
|
2018-11-26 01:25:18 +01:00
|
|
|
<env name="QUEUE_CONNECTION" value="sync"/>
|
2017-06-16 06:03:22 +02:00
|
|
|
<env name="MAIL_DRIVER" value="array"/>
|
2017-06-14 06:25:37 +02:00
|
|
|
</php>
|
|
|
|
</phpunit>
|