如何为Intent创建自定义匹配器,以便我可以看到它的内容并找出我的“预期”代码匹配器失败的原因?
答案 0 :(得分:0)
intended(allOf(new TypeSafeMatcher<Intent>() {
@Override
protected boolean matchesSafely(Intent item) {
return false;
}
@Override
public void describeTo(Description description) {
}
},