Android APIs
public final class

IdlingPolicy

extends Object
java.lang.Object
   ↳ android.support.test.espresso.IdlingPolicy

Class Overview

Allows users to control idling idleTimeouts in Espresso.

Summary

Public Methods
long getIdleTimeout()
The amount of time the policy allows a resource to be non-idle.
TimeUnit getIdleTimeoutUnit()
The unit for getIdleTimeout().
void handleTimeout(List<String> busyResources, String message)
Invoked when the idle idleTimeout has been exceeded.
[Expand]
Inherited Methods
From class java.lang.Object

Public Methods

public long getIdleTimeout ()

The amount of time the policy allows a resource to be non-idle.

public TimeUnit getIdleTimeoutUnit ()

The unit for getIdleTimeout().

public void handleTimeout (List<String> busyResources, String message)

Invoked when the idle idleTimeout has been exceeded.

Parameters
busyResources the resources that are not idle.
message an additional message to include in an exception.