
org.robolectric.ShadowsAdapter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of framework Show documentation
Show all versions of framework Show documentation
An alternative Android testing framework.
The newest version!
package org.robolectric;
import android.app.Activity;
import android.app.Application;
import android.content.res.Configuration;
import org.robolectric.manifest.AndroidManifest;
import org.robolectric.util.Scheduler;
/**
* Interface between robolectric and shadows-core modules.
*/
public interface ShadowsAdapter {
Scheduler getBackgroundScheduler();
ShadowLooperAdapter getMainLooper();
// todo remove
String getShadowActivityThreadClassName();
void setupLogging();
String getShadowContextImplClassName();
void bind(Application application, AndroidManifest appManifest);
interface ShadowLooperAdapter {
void runPaused(Runnable runnable);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy