本文整理汇总了Java中android.support.test.espresso.FailureHandler类的典型用法代码示例。如果您正苦于以下问题:Java FailureHandler类的具体用法?Java FailureHandler怎么用?Java FailureHandler使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
FailureHandler类属于android.support.test.espresso包,在下文中一共展示了FailureHandler类的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: testForCoverage
import android.support.test.espresso.FailureHandler; //导入依赖的package包/类
@Test
public void testForCoverage() {
espScreenshotFailureHandler.delegate = new FailureHandler() {
@Override
public void handle(Throwable error, Matcher<View> viewMatcher) {
// avoid that exception is thrown by default failure handler
}
};
espScreenshotFailureHandler.handle(new TestException(), isRoot());
File screenshot = new File(InstrumentationRegistry.getTargetContext().getFilesDir(), "test-screenshots/Failed-EspScreenshotFailureHandlerTest.testForCoverage.png");
assertThat(screenshot.exists(), is(true));
//noinspection ResultOfMethodCallIgnored
screenshot.delete();
}
示例2: testScreenshotFailure
import android.support.test.espresso.FailureHandler; //导入依赖的package包/类
@Test
public void testScreenshotFailure() {
espScreenshotFailureHandler.delegate = new FailureHandler() {
@Override
public void handle(Throwable error, Matcher<View> viewMatcher) {
// avoid that exception is thrown by default failure handler
wasDelegateCalled = true;
}
};
InstrumentationRegistry.getInstrumentation().runOnMainSync(new Runnable() {
@Override
public void run() {
espScreenshotFailureHandler.handle(new TestException(), isRoot());
}
});
assertTrue(wasDelegateCalled);
}
示例3: setupFailureHandler
import android.support.test.espresso.FailureHandler; //导入依赖的package包/类
public void setupFailureHandler(Description description) {
final String testClassName = description.getClassName();
final String testMethodName = description.getMethodName();
final Context context = InstrumentationRegistry.getTargetContext();
Espresso.setFailureHandler(new FailureHandler() {
@Override
public void handle(Throwable throwable, Matcher<View> matcher) {
SpoonScreenshotAction.perform("espresso_assertion_failed", testClassName, testMethodName);
new DefaultFailureHandler(context).handle(throwable, matcher);
}
});
}
示例4: apply
import android.support.test.espresso.FailureHandler; //导入依赖的package包/类
@Override
public Statement apply(final Statement base, final Description description) {
Espresso.setFailureHandler(new FailureHandler() {
@Override
public void handle(Throwable error, Matcher<View> viewMatcher) {
Spoon.screenshot(SpoonTestRule.this.getActivity(), error.getClass().getSimpleName(), description.getClassName(), description.getMethodName());
new DefaultFailureHandler(SpoonTestRule.this.getActivity()).handle(error, viewMatcher);
}
});
return super.apply(base, description);
}
示例5: onFailure
import android.support.test.espresso.FailureHandler; //导入依赖的package包/类
/**
* Replaces NoMatchingViewException with MySpecialException (to be caught in the test)
*/
@Override
public void onFailure(FailureHandler delegate, Throwable error, Matcher<View> viewMatcher) {
try {
delegate.handle(error, viewMatcher);
} catch (NoMatchingViewException e) {
throw new MySpecialException(e);
}
}
示例6: ignoringFailures
import android.support.test.espresso.FailureHandler; //导入依赖的package包/类
/**
* <b>Modifies the given ViewInteraction</b> to have a no-op FailureHandler. Use this, e.g.,
* to perform an action on a View if it's visible and not complain if it isn't.
*
* @return the modified ViewInteraction
*/
static ViewInteraction ignoringFailures(@NonNull ViewInteraction interaction) {
return interaction.withFailureHandler(new FailureHandler() {
@Override
public void handle(Throwable error, Matcher<View> viewMatcher) {
}
});
}
示例7: onFailure
import android.support.test.espresso.FailureHandler; //导入依赖的package包/类
/** @see android.support.test.espresso.Espresso#setFailureHandler(android.support.test.espresso.FailureHandler) */
protected void onFailure(FailureHandler delegate, Throwable error, Matcher<View> viewMatcher) {
delegate.handle(error, viewMatcher);
}