/*
   * 2 covered goals:
   * 1 geo.google.datamodel.GeoUsAddress.setCountry(Ljava/lang/String;)V: root-Branch
   * 2 geo.google.datamodel.GeoUsAddress.<init>(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lgeo/google/datamodel/GeoCoordinate;Lgeo/google/datamodel/GeoAddressAccuracy;)V: root-Branch
   */
  @Test
  public void test21() throws Throwable {
    GeoCoordinate geoCoordinate0 = new GeoCoordinate();
    GeoAddressAccuracy geoAddressAccuracy0 = GeoAddressAccuracy.UNKNOWN_LOCATION;
    GeoUsAddress geoUsAddress0 =
        new GeoUsAddress("", "", "", "", "", "", "c~rc3P3g", geoCoordinate0, geoAddressAccuracy0);
    assertEquals("c~rc3P3g", geoUsAddress0.getCountry());

    geoUsAddress0.setCountry(".p(p,XmX9(");
    assertEquals("", geoUsAddress0.getState());
  }
 /*
  * 1 covered goal:
  * 1 geo.google.datamodel.GeoUsAddress.getState()Ljava/lang/String;: root-Branch
  */
 @Test
 public void test11() throws Throwable {
   GeoCoordinate geoCoordinate0 = new GeoCoordinate();
   GeoAddressAccuracy geoAddressAccuracy0 = GeoAddressAccuracy.UNKNOWN_LOCATION;
   GeoUsAddress geoUsAddress0 =
       new GeoUsAddress("", "", "", "", "", "", "c~rc3P3g", geoCoordinate0, geoAddressAccuracy0);
   String string0 = geoUsAddress0.getState();
   assertEquals("", geoUsAddress0.getCounty());
   assertNotNull(string0);
   assertEquals("c~rc3P3g", geoUsAddress0.getCountry());
   assertEquals(", ,  ", geoUsAddress0.toAddressLine());
   assertEquals("", geoUsAddress0.getAddressLine2());
   assertEquals("", string0);
 }