UiThreadTestRule

public class UiThreadTestRule
extends Object implements TestRule

java.lang.Object
   ↳ android.support.test.rule.UiThreadTestRule
Known Direct Subclasses
Known Indirect Subclasses


此规则允许在应用程序的主线程(或UI线程)上执行使用 UiThreadTest注释的测试方法。

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

也可以看看:

Summary

Public constructors

UiThreadTestRule()

Public methods

Statement apply(Statement base, Description description)
void runOnUiThread(Runnable runnable)

Helper用于在UI线程上运行测试的各个部分。

Protected methods

boolean shouldRunOnUiThread(Description description)

Inherited methods

From class java.lang.Object
From interface org.junit.rules.TestRule

Public constructors

UiThreadTestRule

UiThreadTestRule ()

Public methods

apply

Statement apply (Statement base, 
                Description description)

Parameters
base Statement
description 描述
Returns
Statement

runOnUiThread

void runOnUiThread (Runnable runnable)

Helper用于在UI线程上运行测试的各个部分。

Note, in most cases it is simpler to annotate the test method with UiThreadTest, which will run the entire test method including methods annotated with Before and After on the UI thread.

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

Parameters
runnable Runnable: runnable containing test code in the run() method
Throws
Throwable

也可以看看:

Protected methods

shouldRunOnUiThread

boolean shouldRunOnUiThread (Description description)

Parameters
description 描述
Returns
boolean