Total Complexity | 3 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
22 | class IntegrationTest extends ProviderIntegrationTest |
||
23 | { |
||
24 | protected $skippedTests = [ |
||
25 | 'testGeocodeQuery' => 'No Pelias "default" instance.', |
||
26 | 'testGeocodeQueryWithNoResults' => 'No Pelias "default" instance.', |
||
27 | 'testReverseQuery' => 'No Pelias "default" instance.', |
||
28 | 'testReverseQueryWithNoResults' => 'No Pelias "default" instance.', |
||
29 | ]; |
||
30 | |||
31 | protected $testIpv4 = false; |
||
32 | |||
33 | protected $testIpv6 = false; |
||
34 | |||
35 | protected function createProvider(HttpClient $httpClient) |
||
36 | { |
||
37 | return new Pelias($httpClient, 'http://localhost/'); |
||
38 | } |
||
39 | |||
40 | protected function getCacheDir() |
||
43 | } |
||
44 | |||
45 | protected function getApiKey() |
||
48 | } |
||
49 | } |
||
50 |