/* * 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.getCountry()Ljava/lang/String;: root-Branch */ @Test public void test20() throws Throwable { GeoCoordinate geoCoordinate0 = new GeoCoordinate(); GeoAddressAccuracy geoAddressAccuracy0 = GeoAddressAccuracy.UNKNOWN_LOCATION; GeoUsAddress geoUsAddress0 = new GeoUsAddress("", "", "", "", "", "", "c~rc3P3g", geoCoordinate0, geoAddressAccuracy0); String string0 = geoUsAddress0.getCountry(); assertEquals("", geoUsAddress0.getAddressLine2()); assertEquals("", geoUsAddress0.getCounty()); assertNotNull(string0); assertEquals("c~rc3P3g", string0); assertEquals(", , ", geoUsAddress0.toAddressLine()); }
/* * 1 covered goal: * 1 geo.google.datamodel.GeoUsAddress.setAddressLine1(Ljava/lang/String;)V: root-Branch */ @Test public void test12() throws Throwable { GeoUsAddress geoUsAddress0 = new GeoUsAddress(); geoUsAddress0.setAddressLine1(""); assertEquals("", geoUsAddress0.getCountry()); }