-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathphpunit.xml
More file actions
24 lines (23 loc) · 905 Bytes
/
Copy pathphpunit.xml
File metadata and controls
24 lines (23 loc) · 905 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="vendor/autoload.php" colors="true">
<php>
<!-- Database Configuration -->
<env name="DB_CONNECTION" value="testing"/>
<env name="DB_DATABASE" value=":memory:"/>
<env name="DB_PREFIX" value="ost_"/>
<!-- Auto Join Eloquent Configuration -->
<env name="AUTO_JOIN_TEST_SCHEMA" value="default"/>
<env name="AUTO_JOIN_SIMPLE_ALIASES" value="true"/>
<env name="AUTO_JOIN_TYPE" value="left"/>
<env name="AUTO_JOIN_DEBUG" value="true"/>
<env name="AUTO_JOIN_DEBUG_SQL" value="true"/>
</php>
<testsuites>
<testsuite name="Integration Tests">
<directory>./tests/Integration</directory>
</testsuite>
<testsuite name="Unit Tests">
<directory>./tests/Unit</directory>
</testsuite>
</testsuites>
</phpunit>