-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
24 lines (23 loc) · 844 Bytes
/
phpunit.xml
File metadata and controls
24 lines (23 loc) · 844 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"
verbose="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true">
<testsuites>
<testsuite name="Findable Test Suite">
<directory suffix="Test.php">./tests</directory>
</testsuite>
</testsuites>
<php>
<env name="APP_ENV" value="testing"/>
<env name="CACHE_DRIVER" value="array"/>
<env name="DB_CONNECTION" value="testing"/>
<env name="ELASTIC_SCHEME" value="http"/>
<env name="ELASTIC_HOST" value="localhost"/>
<env name="ELASTIC_PORT" value="9200"/>
<env name="ELASTIC_USER" value=""/>
<env name="ELASTIC_PASSWORD" value=""/>
</php>
</phpunit>