/*
  * 1 covered goal:
  * 1 geo.google.datamodel.GeoUsAddress.hashCode()I: root-Branch
  */
 @Test
 public void test5() throws Throwable {
   GeoAltitude geoAltitude0 = new GeoAltitude();
   GeoCoordinate geoCoordinate0 =
       new GeoCoordinate((-203.86465169166019), (-364.014349606778), geoAltitude0);
   GeoAddressAccuracy geoAddressAccuracy0 = GeoAddressAccuracy.POST_CODE_LEVEL;
   GeoUsAddress geoUsAddress0 =
       new GeoUsAddress(
           "UNKNOWN_LOCATION",
           "UNKNOWN_LOCATION",
           "UNKNOWN_LOCATION",
           "UNKNOWN_LOCATION",
           "UNKNOWN_LOCATION",
           "UNKNOWN_LOCATION",
           "UNKNOWN_LOCATION",
           geoCoordinate0,
           geoAddressAccuracy0);
   // Undeclared exception!
   try {
     geoUsAddress0.hashCode();
     fail("Expecting exception: NoClassDefFoundError");
   } catch (NoClassDefFoundError e) {
     /*
      * org/apache/commons/lang/builder/HashCodeBuilder
      */
   }
 }