Skip to content

Instantly share code, notes, and snippets.

Created February 20, 2014 19:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/9120783 to your computer and use it in GitHub Desktop.
Save anonymous/9120783 to your computer and use it in GitHub Desktop.
Trying to test maps with Robolectric
public class ConnectivityBroadcastReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
System.out.println("ConnectivityBroadcastReceiver onReceive");
}
}
@Implements(value = MapActivity.class, inheritImplementationMethods = true)
public class ExtendedShadowMapActivity extends ShadowMapActivity {
public void __constructor__() {
super.__constructor__();
}
@Implementation
public void onResume() {
BroadcastReceiver connectivityBroadcastReceiver = new ConnectivityBroadcastReceiver();
registerReceiver(connectivityBroadcastReceiver, new IntentFilter());
try {
realActivity.getClass().getDeclaredField("mCalled").setBoolean(realActivity, true);
} catch (Exception e) {
e.printStackTrace();
}
}
}
@RunWith(RobolectricTestRunner.class)
@Config(manifest = TestUtility.ANDROID_MANIFEST_XML, shadows=ExtendedShadowMapActivity.class)
public class LocationsResultsMapTest {
private LocationsMainActivity activity;
private ActivityController<LocationsMainActivity> activityController;
@Before
public void setUp() throws Exception {
// activityController = Robolectric.buildActivity(LocationsMainActivity.class);
activity = Robolectric.buildActivity(LocationsMainActivity.class).create().get();
}
@Test
public void test() {
}
}
public class MockMapActivity extends MapActivity {
@Override
protected boolean isRouteDisplayed() {
return false;
}
@Override
protected void onCreate(Bundle arg0) {
super.onCreate(arg0);
}
}
@ebabel
Copy link

ebabel commented Feb 20, 2014

Class under test changed to MockMapActivity, still same error.

@ryazmin
Copy link

ryazmin commented Feb 20, 2014

do not extend ShadowMapActivity in your custom shadow , because in this case the call of
super.constructor();
in your shadow will not have any effect. In ShadowMapActivity this method just blank.
Take code from here https://github.com/robolectric/robolectric/blob/master/src/main/java/org/robolectric/shadows/ShadowMapActivity.java
rename class name and add changes.

@nikhilbalyan
Copy link

use config like this @config(constants = BuildConfig.class, sdk = 23) since at the time of writing this comment support for sdk 34 or above is not around.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment