org.robolectric.shadow.api.ShadowPicker Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of annotations Show documentation
Show all versions of annotations Show documentation
An alternative Android testing framework.
The newest version!
package org.robolectric.shadow.api;
// TODO: move this to org.robolectric.annotation
public interface ShadowPicker {
/**
* Determines the shadow class to be used depending on the configuration of the {@link
* org.robolectric.internal.Environment}. Must be deterministic.
*
* @return the shadow class to be used
*/
Class extends T> pickShadowClass();
}