forked from bresam/ivory-google-map-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml.dist
39 lines (35 loc) · 1.08 KB
/
phpunit.xml.dist
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
colors="true"
bootstrap="Tests/autoload.php"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
>
<testsuites>
<testsuite name="IvoryGoogleMapBundle Test Suite">
<directory>./Tests</directory>
</testsuite>
</testsuites>
<php>
<server name="API_KEY" value="AIzaSyAbfXoOk_L4Ryk6aFvdqeAJvbg1ShYiqAE"/>
<server name="API_SECRET" value="78BBhyDNOeFG_PWqHi6XUJ3woJE="/>
<server name="BROWSER_NAME" value="chrome"/>
<server name="SELENIUM_HOST" value="selenium-chrome"/>
<server name="CACHE_PATH" value="Tests/.cache"/>
<server name="CACHE_RESET" value="false"/>
</php>
<coverage>
<include>
<directory>./</directory>
</include>
<exclude>
<directory>./Resources</directory>
<directory>./Tests</directory>
<directory>./vendor</directory>
</exclude>
</coverage>
<groups>
<exclude>
<group>functional</group>
</exclude>
</groups>
</phpunit>