Uh oh!
There was an error while loading. Please reload this page.
- 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 (38 loc) · 1.39 KB
/
Copy pathphpunit.xml
File metadata and controls
38 lines (38 loc) · 1.39 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"?>
<phpunitxmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
bootstrap="vendor/autoload.php"
colors="true"
>
<testsuites>
<testsuitename="Unit">
<directory>tests/Unit</directory>
</testsuite>
<testsuitename="Feature">
<directory>tests/Feature</directory>
</testsuite>
</testsuites>
<source>
<include>
<directory>app</directory>
</include>
</source>
<php>
<envname="APP_ENV"value="testing"/>
<envname="APP_MAINTENANCE_DRIVER"value="file"/>
<envname="BCRYPT_ROUNDS"value="4"/>
<envname="BROADCAST_CONNECTION"value="null"/>
<envname="CACHE_STORE"value="array"/>
<envname="DB_CONNECTION"value="sqlite"/>
<envname="DB_DATABASE"value=":memory:"/>
<envname="DB_URL"value=""/>
<envname="MAIL_MAILER"value="array"/>
<envname="QUEUE_CONNECTION"value="sync"/>
<envname="MEDIA_DISK"value="public"/>
<envname="SESSION_DRIVER"value="array"/>
<envname="PULSE_ENABLED"value="false"/>
<envname="SENTRY_LARAVEL_DSN"value=""/>
<envname="TELESCOPE_ENABLED"value="false"/>
<envname="NIGHTWATCH_ENABLED"value="false"/>
</php>
</phpunit>