{% setvar book_path %}/reference/androidx/_book.yaml{% endsetvar %} {% include "_shared/_reference-head-tags.html" %}
public final class ResettingStubberImpl implements ResettingStubber
Implementation of ResettingStubber
Public constructors |
|
|---|---|
Public methods |
|
|---|---|
ActivityResult |
getActivityResultForIntent(Intent intent) |
void |
Marks this spy as initialized. |
boolean |
|
void |
reset()Clears state (initialization, expected responses). |
void |
setActivityResultForIntent(Sets the result that will be returned to the intent sender (if the sender expects the result), next time an intent matched by the given matcher is launched. |
void |
setActivityResultFunctionForIntent(Sets a result function that will be called by the intent sender (if the sender expects the result), next time an intent matched by the given matcher is launched. |
public void initialize()
Marks this spy as initialized. Once initialized, ResettingStubber begins recording intents and provides intent stubbing.
public void reset()
Clears state (initialization, expected responses).
Must be called on main thread.
public void setActivityResultForIntent(
Matcher<Intent> matcher,
ActivityResult result
)
Sets the result that will be returned to the intent sender (if the sender expects the result), next time an intent matched by the given matcher is launched.
public void setActivityResultFunctionForIntent(
Matcher<Intent> matcher,
ActivityResultFunction result
)
Sets a result function that will be called by the intent sender (if the sender expects the result), next time an intent matched by the given matcher is launched.