/**
  * @expectedException DrawMyAttention\PHPAddressr\Exceptions\MissingGeocodeApiKeyException
  */
 public function test_it_throws_an_exception_when_an_api_key_hasnt_been_set()
 {
     $lookup = new GoogleGeocode();
     $lookup->setApiKey('');
     $this->callPrivateMethod($lookup, 'buildRequest', [['company' => 'Energy Aspects Ltd.', 'building' => 'Dock Offices', 'street' => 'Surrey Quays Road', 'city' => 'London', 'postcode' => 'SE16 2XU', 'country' => 'United Kingdom']]);
 }