Interface AndroidInstrumentationLoader
-
- All Implemented Interfaces:
public interface AndroidInstrumentationLoaderLoads and provides AndroidInstrumentation instances from the runtime classpath.
-
-
Method Summary
-
-
Method Detail
-
getByType
abstract <T extends AndroidInstrumentation> T getByType(Class<out T> type)
Provides a single instrumentation if available.
- Parameters:
type- The type of the instrumentation to retrieve.- Returns:
The instrumentation instance if available, null otherwise.
-
getAll
abstract Collection<AndroidInstrumentation> getAll()
Provides all registered instrumentations.
- Returns:
All registered instrumentations.
-
-
-
-