Total Complexity | 3 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
22 | class IntegrationTest extends ProviderIntegrationTest |
||
23 | { |
||
24 | protected $skippedTests = [ |
||
25 | 'testGeocodeQuery' => 'We get "Great George Street" as first result.', |
||
26 | 'testReverseQueryWithNoResults' => 'We get "Atlas Buoy 0.00E 0.00N" monitoring station.', |
||
27 | ]; |
||
28 | |||
29 | protected $testIpv4 = false; |
||
30 | |||
31 | protected $testIpv6 = false; |
||
32 | |||
33 | protected function createProvider(HttpClient $httpClient) |
||
36 | } |
||
37 | |||
38 | protected function getCacheDir() |
||
39 | { |
||
40 | return __DIR__.'/.cached_responses'; |
||
41 | } |
||
42 | |||
43 | protected function getApiKey() |
||
46 | } |
||
47 | } |
||
48 |