For the code change tests, this is the line of code I added/removed between tests:
DogMarkerOptions.java
:
public DogMarker getMarker() {
marker.setDogId(dogId);
marker.setPosition(position);
// marker.setSnippet(snippet); // snippet is not overrideable in base class Marker
// marker.setTitle(title); // title is not overrideable in base class Marker
marker.setIcon(icon);
+ marker.setIcon(icon); // TODO remove // enabled/disabled between tests
return marker;
}
For the layout xml tests, this is the line of xml I changed between tests:
<ImageView
android:id="@+id/maps_fragment_all_pets_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_marginBottom="165dp"
android:layout_marginLeft="6dp"
- android:src="@drawable/map_allpets" // toggle between runs
+ android:src="@drawable/map_allcenter
android:visibility="gone"/>