source: phpunit.xml

Last change on this file was 0924b6c, checked in by Özkan İliyaz <iliyaz_96@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 1.1 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<phpunit backupGlobals="false"
3 backupStaticAttributes="false"
4 bootstrap="vendor/autoload.php"
5 colors="true"
6 convertErrorsToExceptions="true"
7 convertNoticesToExceptions="true"
8 convertWarningsToExceptions="true"
9 processIsolation="false"
10 stopOnFailure="false">
11 <testsuites>
12 <testsuite name="Unit">
13 <directory suffix="Test.php">./tests/Unit</directory>
14 </testsuite>
15
16 <testsuite name="Feature">
17 <directory suffix="Test.php">./tests/Feature</directory>
18 </testsuite>
19 </testsuites>
20 <filter>
21 <whitelist processUncoveredFilesFromWhitelist="true">
22 <directory suffix=".php">./app</directory>
23 </whitelist>
24 </filter>
25 <php>
26 <env name="APP_ENV" value="testing"/>
27 <env name="BCRYPT_ROUNDS" value="4"/>
28 <env name="CACHE_DRIVER" value="array"/>
29 <env name="MAIL_DRIVER" value="array"/>
30 <env name="QUEUE_CONNECTION" value="sync"/>
31 <env name="SESSION_DRIVER" value="array"/>
32 </php>
33</phpunit>
Note: See TracBrowser for help on using the repository browser.