- Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathphpunit.xml
More file actions
Latest commit
35 lines (35 loc) · 1.23 KB
/
Copy pathphpunit.xml
File metadata and controls
35 lines (35 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?xml version="1.0" encoding="UTF-8"?>
<phpunitbackupGlobals="false"
backupStaticAttributes="false"
beStrictAboutTestsThatDoNotTestAnything="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnError="false"
stopOnFailure="false"
verbose="true"
>
<testsuites>
<testsuitename="Test Suite">
<directorysuffix="Test.php">./tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelistprocessUncoveredFilesFromWhitelist="true">
<directorysuffix=".php">./src</directory>
</whitelist>
</filter>
<php>
<servername="APP_ENV"value="testing"/>
<servername="BCRYPT_ROUNDS"value="4"/>
<servername="APP_DEBUG"value="true"/>
<servername="CACHE_DRIVER"value="array"/>
<servername="DB_CONNECTION"value="sqlite"/>
<servername="DB_DATABASE"value=":memory:"/>
<servername="MAIL_MAILER"value="array"/>
<servername="QUEUE_CONNECTION"value="sync"/>
<servername="SESSION_DRIVER"value="array"/>
</php>
</phpunit>