forked from egeloen/ivory-google-map
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
22 lines (21 loc) · 801 Bytes
/
phpunit.xml.dist
File metadata and controls
22 lines (21 loc) · 801 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 colors="true" bootstrap="tests/autoload.php">
<testsuites>
<testsuite name="Ivory Google Map Test Suite">
<directory suffix="Test.php">./tests/</directory>
</testsuite>
</testsuites>
<php>
<server name="API_KEY" value="AIzaSyAYhuwcFCmc7W9sdDweF_ewbWPTypqDrqs" />
<server name="API_SECRET" value="JADEyaa-FWNCdlgAb9qS7bMIsok=" />
<server name="BROWSER_NAME" value="chrome" />
<server name="SELENIUM_HOST" value="selenium" />
<server name="CACHE_PATH" value="tests/.cache" />
<server name="CACHE_RESET" value="false" />
</php>
<filter>
<whitelist>
<directory suffix=".php">./src/</directory>
</whitelist>
</filter>
</phpunit>