IntentsTestRule

public class IntentsTestRule
extends ActivityTestRule<T extends Activity>

java.lang.Object
   ↳ android.support.test.rule.ActivityTestRule<T extends android.app.Activity>
     ↳ android.support.test.espresso.intent.rule.IntentsTestRule<T extends android.app.Activity>


This rule makes it easy to use Espresso-Intents APIs in functional UI tests. This class is an extension of ActivityTestRule, which initializes Espresso-Intents before each test annotated with Test and releases Espresso-Intents after each test run. The Activity will be terminated after each test and this rule can be used in the same way as ActivityTestRule.

Espresso-Intents APIs can be used in two ways:

Summary

Public constructors

IntentsTestRule(Class<T> activityClass)
IntentsTestRule(Class<T> activityClass, boolean initialTouchMode)
IntentsTestRule(Class<T> activityClass, boolean initialTouchMode, boolean launchActivity)

Protected methods

void afterActivityFinished()

Override this method to execute any code that should run after the currently launched Activity is finished.

void afterActivityLaunched()

Override this method to execute any code that should run after your Activity is launched, but before any test code is run including any method annotated with Before.

Inherited methods

From class android.support.test.rule.ActivityTestRule
From class java.lang.Object
From interface org.junit.rules.TestRule

Public constructors

IntentsTestRule

IntentsTestRule (Class<T> activityClass)

Parameters
activityClass Class

IntentsTestRule

IntentsTestRule (Class<T> activityClass, 
                boolean initialTouchMode)

Parameters
activityClass Class

initialTouchMode boolean

IntentsTestRule

IntentsTestRule (Class<T> activityClass, 
                boolean initialTouchMode, 
                boolean launchActivity)

Parameters
activityClass Class

initialTouchMode boolean

launchActivity boolean

Protected methods

afterActivityFinished

void afterActivityFinished ()

Override this method to execute any code that should run after the currently launched Activity is finished. This method is called after each test method, including any method annotated with After .

Prefer Before over this method. This method should usually not be overwritten directly in tests and only be used by subclasses of ActivityTestRule to get notified when the activity is created and visible but test runs.

afterActivityLaunched

void afterActivityLaunched ()

Override this method to execute any code that should run after your Activity is launched, but before any test code is run including any method annotated with Before.

Prefer Before over this method. This method should usually not be overwritten directly in tests and only be used by subclasses of ActivityTestRule to get notified when the activity is created and visible but test runs.