I am trying to write an automated test for my map based Android application that uses the v2 GoogleMaps.
I need to be able to programmatically recreate the effect of a user taping a map marker so I can verify other UI activities occur.
I have looked into using Robotium however, the extensions available for GoogleMaps only support v1 and I am using v2. Espresso doesn't seem to have any support at all for GoogleMaps so I am left with either adding my own extensions or using plain ActivityInstrumentationTestCase2 implementations.
Any ideas?