DefaultFailureHandler
public final class DefaultFailureHandler
extends Object
implements FailureHandler
java.lang.Object |
↳ |
android.support.test.espresso.base.DefaultFailureHandler |
意式咖啡的默认FailureHandler
。 如果这不符合您的需求,请随时通过Espresso.setFailureHandler(FailureHandler)提供您自己的实现。
Summary
Public methods |
void |
handle(Throwable error, Matcher<View> viewMatcher) 以对测试执行环境有意义的方式处理给定的错误(例如, |
Inherited methods |
From class java.lang.Object
Object |
clone() |
boolean |
equals(Object arg0) |
void |
finalize() |
final Class<?> |
getClass() |
int |
hashCode() |
final void |
notify() |
final void |
notifyAll() |
String |
toString() |
final void |
wait(long arg0, int arg1) |
final void |
wait(long arg0) |
final void |
wait() |
|
From interface android.support.test.espresso.FailureHandler
abstract void |
handle(Throwable error, Matcher<View> viewMatcher) 以对测试执行环境有意义的方式处理给定的错误(例如, |
|
Public constructors
DefaultFailureHandler
DefaultFailureHandler (Context appContext)
Parameters |
appContext |
Context
|
Public methods
handle
void handle (Throwable error,
Matcher<View> viewMatcher)
以对测试执行环境有意义的方式处理给定的错误(例如截图,输出额外的调试信息等)。 处理后,大多数处理程序会选择传播错误。
Parameters |
error |
Throwable
|
viewMatcher |
Matcher
|