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
29 lines (29 loc) · 1.04 KB
/
Copy pathphpunit.xml
File metadata and controls
29 lines (29 loc) · 1.04 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
<?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="Feature">
<directory>./tests/Feature</directory>
</testsuite>
</testsuites>
<source>
<include>
<directory>./app</directory>
</include>
</source>
<php>
<envname="APP_ENV"value="testing"/>
<envname="APP_KEY"value="base64:SKEJSy9oF9chQBCMbxqgj5zhtAvug9kwZ+cDiP1Y8A8="/>
<envname="BCRYPT_ROUNDS"value="4"/>
<envname="CACHE_DRIVER"value="array"/>
<envname="DB_HOST"value="keating-db-dev"/>
<envname="DB_DATABASE"value="keating-test"/>
<envname="DB_USERNAME"value="keating"/>
<envname="MAIL_MAILER"value="array"/>
<envname="QUEUE_CONNECTION"value="sync"/>
<envname="SESSION_DRIVER"value="array"/>
</php>
</phpunit>