IdlingRegistry
public final class IdlingRegistry
Handles registering and unregistering of IdlingResources with Espresso from within your application code.
These resources are required by Espresso to provide synchronisation against your application code. All registered resources with this registry will be automatically synchronized against for each Espresso interaction.
This registry along with IdlingResource interface are bundled together in a small light weight module so that it can be pulled in as a dependency of the App under test with close to no overhead.
Summary
Public fields |
|
|---|---|
static final IdlingRegistry |
Public methods |
|
|---|---|
static IdlingRegistry |
Returns a singleton instance of this |
Collection<Looper> |
Returns a set of all currently registered |
Collection<IdlingResource> |
Returns a set of all currently registered |
boolean |
register(IdlingResource[] idlingResources)Registers one or more |
void |
registerLooperAsIdlingResource(Looper looper)Registers a |
boolean |
unregister(IdlingResource[] idlingResources)Unregisters one or more |
boolean |
Unregisters a |
Public fields
Public methods
getInstance
public static IdlingRegistry getInstance()
Returns a singleton instance of this IdlingRegistry that should be globally used for registering and unregistering IdlingResources
getLoopers
public Collection<Looper> getLoopers()
Returns a set of all currently registered Loopers.
getResources
public Collection<IdlingResource> getResources()
Returns a set of all currently registered IdlingResources.
register
public boolean register(IdlingResource[] idlingResources)
Registers one or more IdlingResources. When registering more than one resource, ensure that each has a unique name returned from getName
| Returns | |
|---|---|
boolean |
|
registerLooperAsIdlingResource
public void registerLooperAsIdlingResource(Looper looper)
Registers a Looper for idle checking with the framework. This is intended for use with non-UI thread Loopers only.
| Throws | |
|---|---|
java.lang.IllegalArgumentException |
if looper is the main looper. |
java.lang.NullPointerException |
if looper is null. |
unregister
public boolean unregister(IdlingResource[] idlingResources)
Unregisters one or more IdlingResources.
| Returns | |
|---|---|
boolean |
|
unregisterLooperAsIdlingResource
public boolean unregisterLooperAsIdlingResource(Looper looper)
Unregisters a Looper.
Attempting to unregister a looper that is not registered is a no-op.
| Returns | |
|---|---|
boolean |
|