use of com.google.maps.android.data.Feature in project android-maps-utils by googlemaps.
the class GeoJsonLayerTest method testGetFeatures.
public void testGetFeatures() throws Exception {
int featureCount = 0;
for (Feature ignored : mLayer.getFeatures()) {
featureCount++;
}
assertEquals(3, featureCount);
}