测试EditText视图是否在Android上没有使用Espresso设置错误文本?

时间:2017-03-08 10:21:04

标签: android testing android-espresso

我知道如何测试EditText中是否设置了错误文本:

editText.check(matches(hasErrorText("")));

现在我想测试EditText是否没有设置错误文本。我试过这个,但它不起作用。

editText.check((matches(not(hasErrorText("")))));

有谁知道怎么做?谢谢!

1 个答案:

答案 0 :(得分:7)

我认为这不可能,取决于你想要什么,我会使用自定义匹配器:

public static Matcher<View> hasNoErrorText() {
    return new BoundedMatcher<View, EditText>(EditText.class) {

        @Override
        public void describeTo(Description description) {
            description.appendText("has no error text: ");
        }

        @Override
        protected boolean matchesSafely(EditText view) {
            return view.getError() == null;
        }
    };
}

此匹配器可以检查EditText是否没有任何错误文本集,使用它如下:

onView(allOf(withId(R.id.edittext), isDisplayed())).check(matches(hasNoErrorText()));