use of de.westnordost.streetcomplete.data.osm.changes.StringMapEntryAdd in project StreetComplete by westnordost.
the class AddRecyclingTypeTest method testRecyclingCentre.
public void testRecyclingCentre() {
bundle.putStringArrayList(AddRecyclingTypeForm.OSM_VALUES, getAsStringArray("centre"));
verify(new StringMapEntryAdd("recycling_type", "centre"));
}
use of de.westnordost.streetcomplete.data.osm.changes.StringMapEntryAdd in project StreetComplete by westnordost.
the class AddRecyclingTypeTest method testRecyclingOvergroundContainer.
public void testRecyclingOvergroundContainer() {
bundle.putStringArrayList(AddRecyclingTypeForm.OSM_VALUES, getAsStringArray("overground"));
verify(new StringMapEntryAdd("recycling_type", "container"));
}
use of de.westnordost.streetcomplete.data.osm.changes.StringMapEntryAdd in project StreetComplete by westnordost.
the class AddRoadSurfaceTest method testSurface.
public void testSurface() {
bundle.putString(AddRoadSurfaceForm.SURFACE, "cobblestone");
verify(new StringMapEntryAdd("surface", "cobblestone"));
}
use of de.westnordost.streetcomplete.data.osm.changes.StringMapEntryAdd in project StreetComplete by westnordost.
the class AddWheelchairBusinessTest method testBusinessLimited.
public void testBusinessLimited() {
bundle.putString(AddWheelchairAccessBusinessForm.ANSWER, "limited");
verify(new StringMapEntryAdd("wheelchair", "limited"));
}
use of de.westnordost.streetcomplete.data.osm.changes.StringMapEntryAdd in project StreetComplete by westnordost.
the class AddWheelchairPublicTransportTest method testPublicTransportYes.
public void testPublicTransportYes() {
bundle.putString(AddWheelchairAccessPublicTransportForm.ANSWER, "yes");
verify(new StringMapEntryAdd("wheelchair", "yes"));
}
Aggregations