forked from Kwarcek/furgonetka-rest-api-php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
22 lines (21 loc) · 788 Bytes
/
phpunit.xml
File metadata and controls
22 lines (21 loc) · 788 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" encoding="UTF-8" ?>
<phpunit bootstrap="vendor/autoload.php">
<testsuites>
<testsuite name="Unit">
<directory suffix="Test.php">./tests/Unit</directory>
</testsuite>
<testsuite name="Integration">
<directory suffix="Test.php">./tests/Integration</directory>
</testsuite>
</testsuites>
<coverage cacheDirectory=".phpunit.cache/code-coverage"
processUncoveredFiles="true">
</coverage>
<php>
<server name="APP_ENV" value="development"/>
<env name="FURGONETKA_CLIENT_ID" value="" />
<env name="FURGONETKA_CLIENT_SECRET" value="" />
<env name="FURGONETKA_USERNAME" value="" />
<env name="FURGONETKA_PASSWORD" value="" />
</php>
</phpunit>