forked from thegivehub/app
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
31 lines (31 loc) · 1 KB
/
Copy pathphpunit.xml
File metadata and controls
31 lines (31 loc) · 1 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="tests/bootstrap.php"
colors="true"
verbose="true"
stopOnFailure="false">
<testsuites>
<testsuite name="Unit">
<directory>tests/Unit</directory>
</testsuite>
</testsuites>
<php>
<env name="APP_ENV" value="testing"/>
<env name="APP_DEBUG" value="true"/>
<env name="MONGODB_DATABASE" value="givehub_test"/>
<env name="MONGODB_HOST" value="localhost"/>
<env name="MONGODB_PORT" value="27017"/>
<env name="MONGODB_USERNAME" value=""/>
<env name="MONGODB_PASSWORD" value=""/>
<env name="JWT_SECRET" value="test_secret_key"/>
<env name="STORAGE_PATH" value="storage/test"/>
</php>
<coverage>
<include>
<directory suffix=".php">lib</directory>
</include>
<exclude>
<directory>vendor</directory>
<directory>tests</directory>
</exclude>
</coverage>
</phpunit>