IntentsTestRule
class IntentsTestRule<T : Activity?> : ActivityTestRule
| kotlin.Any | ||
| ↳ | androidx.test.rule.ActivityTestRule | |
| ↳ | androidx.test.espresso.intent.rule.IntentsTestRule |
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 org.junit.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:
- Intent Verification, using the intended API
- Intent Stubbing, using the intending API
| Parameters | |
|---|---|
<T : Activity?> |
The activity to test |
Summary
Public constructors |
|---|
|
|
|
Protected functions |
|
|---|---|
Unit |
Override this method to execute any code that should run after the currently launched |
Unit |
Override this method to execute any code that should run after your |
Inherited functions |
||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
||||||||||||||
|
Inherited properties |
||
|---|---|---|
|
Public constructors
IntentsTestRule
IntentsTestRule(
activityClass: Class<T!>!,
initialTouchMode: Boolean,
launchActivity: Boolean
)
Protected functions
afterActivityFinished
protected funafterActivityFinished(): Unit
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 org.junit.After.
Prefer org.junit.After 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
protected funafterActivityLaunched(): Unit
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 org.junit.Before.
Prefer org.junit.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.