{% setvar book_path %}/reference/androidx/_book.yaml{% endsetvar %} {% include "_shared/_reference-head-tags.html" %}

DefaultFailureHandler

public final class DefaultFailureHandler implements FailureHandler


Espresso's default FailureHandler. If this does not fit your needs, feel free to provide your own implementation via Espresso.setFailureHandler(FailureHandler).

Summary

Public constructors

Public methods

void
handle(Throwable error, Matcher<View> viewMatcher)

Handle the given error in a manner that makes sense to the environment in which the test is executed (e.g. take a screenshot, output extra debug info, etc).

Public constructors

DefaultFailureHandler

public DefaultFailureHandler(@TargetContext Context appContext)

Public methods

handle

public void handle(Throwable error, Matcher<View> viewMatcher)

Handle the given error in a manner that makes sense to the environment in which the test is executed (e.g. take a screenshot, output extra debug info, etc). Upon handling, most handlers will choose to propagate the error.