| 1 | <?php |
||
| 22 | class IntegrationTest extends ProviderIntegrationTest |
||
| 23 | { |
||
| 24 | protected $skippedTests = [ |
||
| 25 | 'testGeocodeQuery' => 'Wrong cords', |
||
| 26 | ]; |
||
| 27 | |||
| 28 | protected $testAddress = true; |
||
| 29 | protected $testReverse = true; |
||
| 30 | protected $testIpv4 = false; |
||
| 31 | protected $testIpv6 = false; |
||
| 32 | |||
| 33 | protected function createProvider(HttpClient $httpClient) |
||
| 34 | { |
||
| 35 | return new Yandex($httpClient); |
||
| 36 | } |
||
| 37 | |||
| 38 | protected function getCacheDir() |
||
| 39 | { |
||
| 40 | return __DIR__.'/.cached_responses'; |
||
| 41 | } |
||
| 42 | |||
| 43 | protected function getApiKey() |
||
| 44 | { |
||
| 45 | return null; |
||
| 46 | } |
||
| 47 | } |
||
| 48 |