use of com.android.internal.os.BackgroundThread in project robolectric by robolectric.
the class ShadowBackgroundThread method reset.
@Resetter
public static void reset() {
BackgroundThread instance = ReflectionHelpers.getStaticField(BackgroundThread.class, "sInstance");
if (instance != null) {
instance.quit();
ReflectionHelpers.setStaticField(BackgroundThread.class, "sInstance", null);
ReflectionHelpers.setStaticField(BackgroundThread.class, "sHandler", null);
}
}
Aggregations