forked from roblesterjr04/EloquentSalesForce
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
15 lines (15 loc) · 733 Bytes
/
phpunit.xml
File metadata and controls
15 lines (15 loc) · 733 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.0/phpunit.xsd" bootstrap="vendor/autoload.php" cacheResult="false" colors="true" cacheDirectory=".phpunit.cache">
<testsuites>
<testsuite name="Package">
<directory suffix="Test.php">./tests</directory>
</testsuite>
</testsuites>
<php>
<env name="LOGIN_URL" value="https://login.salesforce.com"/>
<env name="CACHE_DRIVER" value="file"/>
<env name="APP_KEY" value="base64:WRAf0EDpFqwpbS829xKy2MGEkcJxIEmMrwFIZbGxIqE="/>
<server name="DB_CONNECTION" value="sqlite"/>
<server name="DB_DATABASE" value=":memory:"/>
</php>
</phpunit>