/**
  * @expectedException \Geocoder\Exception\UnsupportedException
  * @expectedExceptionMessage The GeoIPsProvider is not able to do reverse geocoding.
  */
 public function testGetReverseData()
 {
     $provider = new GeoIPsProvider($this->getMockAdapter($this->never()), 'api_key');
     $provider->getReversedData(array(1, 2));
 }