* For the full copyright and license information, please view the LICENSE
6
* file that was distributed with this source code.
7
*
8
* @license MIT License
9
*/
10
11
namespace Geocoder\Provider\Addok\Tests;
12
13
use Geocoder\IntegrationTest\ProviderIntegrationTest;
14
use Geocoder\Provider\Addok\Addok;
15
use Http\Client\HttpClient;
16
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' => 'BAN Server supports France only.',
29
'testReverseQuery' => 'BAN Server supports France only.',
30
'testReverseQueryWithNoResults' => 'Addok returns "debug" information for reverse geocoding on coordinates 0, 0. See https://github.com/addok/addok/issues/505',
31
];
32
33
protected function createProvider(HttpClient $httpClient)