/**
  * @expectedException \Ivory\GoogleMap\Exception\GeocodingException
  * @expectedExceptionMessage The geocoder response status can only be : ERROR, INVALID_REQUEST, OK,
  * OVER_QUERY_LIMIT, REQUEST_DENIED, UNKNOWN_ERROR, ZERO_RESULTS.
  */
 public function testStatusWithInvalidValue()
 {
     $this->geocoderResponse->setStatus('foo');
 }