Total Complexity | 3 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
17 | class IntegrationTest extends ProviderIntegrationTest |
||
18 | { |
||
19 | protected $testAddress = true; |
||
20 | |||
21 | protected $testReverse = true; |
||
22 | |||
23 | protected $testIpv4 = false; |
||
24 | |||
25 | protected $testIpv6 = false; |
||
26 | |||
27 | protected $skippedTests = [ |
||
28 | 'testGeocodeQuery' => 'Geopunt provider supports Brussels and Flanders (Belgium) only.', |
||
29 | 'testReverseQuery' => 'Geopunt provider supports Brussels and Flanders (Belgium) only.', |
||
30 | 'testReverseQueryWithNoResults' => 'Geopunt provider supports Brussels and Flanders (Belgium) only.', |
||
31 | ]; |
||
32 | |||
33 | protected function createProvider(HttpClient $httpClient) |
||
34 | { |
||
35 | return new Geopunt($httpClient); |
||
36 | } |
||
37 | |||
38 | protected function getCacheDir() |
||
41 | } |
||
42 | |||
43 | protected function getApiKey() |
||
45 | } |
||
46 | } |
||
47 |