UiThreadTestRule

public class UiThreadTestRule implements TestRule


This rule allows the test method annotated with UiThreadTest to execute on the application's main thread (or UI thread).

Note, methods annotated with Before and After will also be executed on the UI thread.

See also
UiThreadTest

if you need to switch in and out of the UI thread within your method.

Summary

Public constructors

Public methods

Statement
apply(Statement base, Description description)
void

Helper method for running part of a method on the UI thread.

Protected methods

boolean

Public constructors

UiThreadTestRule

public UiThreadTestRule()

Public methods

apply

public Statement apply(Statement base, Description description)

runOnUiThread

public void runOnUiThread(Runnable runnable)

Helper method for running part of a method on the UI thread.

Note: In most cases it is simpler to annotate the test method with UiThreadTest.

Use this method if you need to switch in and out of the UI thread within your method.

Parameters
Runnable runnable

runnable containing test code in the run method

See also
UiThreadTest

Protected methods

shouldRunOnUiThread

protected boolean shouldRunOnUiThread(Description description)