BottomNavigationItemView
ItemView
メソッドを持つインターフェースを実装しますsetChecked()
。
Espresso で 1 つの itemView がチェックされていることをアサートしようとしましたが、予想される値が何であれ、同じエラーが発生しましisChecked()
たisNotChecked()
。
私のテスト:
ViewInteraction buttonHome = onView(
allOf(withId(R.id.bottomHome),
childAtPosition(
childAtPosition(
withId(R.id.bottom_navigation),
0),
0),
isDisplayed()));
buttonHome.check(matches(isNotChecked()));
エラーメッセージ
android.support.test.espresso.base.DefaultFailureHandler$AssertionFailedWithCauseError: 'with checkbox state: is <true>' doesn't match the selected view.
Expected: with checkbox state: is <true>
Got: "BottomNavigationItemView{id=2131493015, res-name=bottomHome, visibility=VISIBLE, width=360, height=168, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=true, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=2}"
BottomNavigationItemView
aが の現在選択されているアイテムであると断言するにはどうすればよいBottomNavigationView
ですか?