当前位置: 首页>>代码示例>>Java>>正文


Java FailureHandler类代码示例

本文整理汇总了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();
}
 
开发者ID:nenick,项目名称:espresso-macchiato,代码行数:17,代码来源:EspScreenshotFailureHandlerTest.java

示例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);
}
 
开发者ID:nenick,项目名称:espresso-macchiato,代码行数:20,代码来源:EspScreenshotFailureHandlerTest.java

示例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);
        }
    });
}
 
开发者ID:sregg,项目名称:spotify-tv,代码行数:13,代码来源:FailureScreenshotRule.java

示例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);
}
 
开发者ID:byoutline,项目名称:SecretSauce,代码行数:12,代码来源:SpoonTestRule.java

示例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);
    }
}
 
开发者ID:mindbody,项目名称:Ironhide,代码行数:12,代码来源:CustomFailureHandlerTest.java

示例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) {
        }
    });
}
 
开发者ID:1fish2,项目名称:BBQTimer,代码行数:14,代码来源:CustomMatchers.java

示例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);
}
 
开发者ID:mindbody,项目名称:Ironhide,代码行数:5,代码来源:BaseInstrumentTestCase.java


注:本文中的android.support.test.espresso.FailureHandler类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。