-
Notifications
You must be signed in to change notification settings - Fork 519
/
phpunit.xml.dist
66 lines (66 loc) · 2.87 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
backupGlobals="false"
backupStaticAttributes="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
bootstrap="vendor/autoload.php"
>
<coverage>
<include>
<directory>./src/</directory>
</include>
<exclude>
<directory>./src/Common/Tests</directory>
<directory>./src/Http/Tests</directory>
<directory>./src/Provider/*/Tests</directory>
<directory>./src/Common/vendor</directory>
<directory>./src/Http/vendor</directory>
<directory>./src/Provider/*/vendor</directory>
</exclude>
</coverage>
<php>
<!--
Turn this parameter to 'false' or comment it to bypass
the caching layer. See the `CachedResponseAdapter` class.
-->
<server name="USE_CACHED_RESPONSES" value="true"/>
<!-- API Keys -->
<server name="ALGOLIA_API_KEY" value="YOUR_API_KEY"/>
<server name="ALGOLIA_APP_ID" value="YOUR_APP_ID"/>
<server name="BINGMAPS_API_KEY" value="YOUR_API_KEY"/>
<server name="GEOIPS_API_KEY" value="YOUR_API_KEY"/>
<server name="GEONAMES_USERNAME" value="YOUR_USERNAME"/>
<server name="GOOGLE_GEOCODING_KEY" value="YOUR_GEOCODING_KEY"/>
<server name="GRAPHHOPPER_API_KEY" value="YOUR_API_KEY"/>
<server name="HERE_APP_CODE" value="YOUR_APP_CODE"/>
<server name="HERE_APP_ID" value="YOUR_APP_ID"/>
<server name="HERE_API_KEY" value="YOUR_API_KEY"/>
<server name="IPINFODB_API_KEY" value="YOUR_API_KEY"/>
<server name="IP2LOCATION_API_KEY" value="YOUR_API_KEY"/>
<server name="IPSTACK_API_KEY" value="YOUR_API_KEY"/>
<server name="LOCATIONIQ_API_KEY" value="YOUR_API_KEY"/>
<server name="MAPBOX_GEOCODING_KEY" value="YOUR_GEOCODING_KEY"/>
<server name="MAPQUEST_API_KEY" value="YOUR_API_KEY"/>
<server name="MAPZEN_API_KEY" value="YOUR_MAPZEN_API_KEY"/>
<server name="OPENCAGE_API_KEY" value="YOUR_GEOCODING_KEY"/>
<server name="PICKPOINT_API_KEY" value="YOUR_API_KEY"/>
<server name="TOMTOM_MAP_KEY" value="YOUR_MAP_KEY"/>
<server name="GEOCODE_EARTH_API_KEY" value="YOUR_GEOCODE_EARTH_API_KEY"/>
<server name="OPEN_ROUTE_SERVICE_API_KEY" value="YOUR_OPEN_ROUTE_SERVICE_API_KEY"/>
<server name="AZURE_MAPS_SUBSCRIPTION_KEY" value="YOUR_AZURE_MAPS_SUBSCRIPTION_KEY"/>
<server name="MAPTILER_KEY" value="YOUR_MAPTILER_KEY"/>
<!--<server name="MAXMIND_API_KEY" value="YOUR_API_KEY" />-->
</php>
<testsuites>
<testsuite name="Geocoder Test Suite">
<directory>./src/Common/Tests/</directory>
<directory>./src/Http/Tests/</directory>
<directory>./src/Provider/*/Tests/</directory>
</testsuite>
</testsuites>
</phpunit>