- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
Latest commit
38 lines (37 loc) · 1.55 KB
/
Copy pathphpunit.xml
File metadata and controls
38 lines (37 loc) · 1.55 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
36
37
38
<?xml version="1.0" encoding="UTF-8"?>
<phpunitbackupGlobals="false"
backupStaticAttributes="false"
bootstrap="tests/bootstrap.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false">
<testsuites>
<testsuitename="Unit">
<directorysuffix="Test.php">./tests/Unit</directory>
</testsuite>
<testsuitename="Feature">
<directorysuffix="Test.php">./tests/Feature</directory>
</testsuite>
</testsuites>
<filter>
<whitelistprocessUncoveredFilesFromWhitelist="true">
<directorysuffix=".php">./app</directory>
</whitelist>
</filter>
<php>
<servername="APP_ENV"value="testing"/>
<servername="BCRYPT_ROUNDS"value="4"/>
<servername="CACHE_DRIVER"value="array"/>
<servername="MAIL_DRIVER"value="array"/>
<servername="QUEUE_CONNECTION"value="sync"/>
<servername="SESSION_DRIVER"value="array"/>
<servername="APP_CONFIG_CACHE"value="bootstrap/cache/config.phpunit.php"/>
<servername="APP_SERVICES_CACHE"value="bootstrap/cache/services.phpunit.php"/>
<servername="APP_PACKAGES_CACHE"value="bootstrap/cache/packages.phpunit.php"/>
<servername="APP_ROUTES_CACHE"value="bootstrap/cache/routes.phpunit.php"/>
<servername="APP_EVENTS_CACHE"value="bootstrap/cache/events.phpunit.php"/>
</php>
</phpunit>