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