Total Complexity | 3 |
Total Lines | 29 |
Duplicated Lines | 0 % |
Changes | 1 | ||
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' => 'SPW provider supports Belgium only.', |
||
29 | 'testReverseQuery' => 'SPW provider supports Belgium only.', |
||
30 | 'testReverseQueryWithNoResults' => 'SPW provider supports Belgium only.', |
||
31 | 'testExceptions' => 'SPW provider uses SOAP.', |
||
32 | ]; |
||
33 | |||
34 | protected function createProvider(HttpClient $httpClient) |
||
35 | { |
||
36 | return new SPW($httpClient); |
||
37 | } |
||
38 | |||
39 | protected function getCacheDir() |
||
40 | { |
||
41 | return __DIR__.'/.cached_responses'; |
||
42 | } |
||
43 | |||
44 | protected function getApiKey() |
||
46 | } |
||
47 | } |
||
48 |