Espresso Intents Custom Intent Matcher

时间:2017-05-11 15:32:24

标签: android-espresso

如何为Intent创建自定义匹配器,以便我可以看到它的内容并找出我的“预期”代码匹配器失败的原因?

1 个答案:

答案 0 :(得分:0)

     intended(allOf(new TypeSafeMatcher<Intent>() {
       @Override
       protected boolean matchesSafely(Intent item) {
           return false;
       }

       @Override
       public void describeTo(Description description) {

       }
   },