模拟 Robolectric 中菜单项的点击
在 Robolectric 中模拟按钮单击相当简单:
Button someButton = (Button) findViewById(R.id.some_button);
someButton.performClick();
但是,我似乎不知道如何使用菜单项执行相同的操作。我在 Activity.onCreateOptionsMenu
中创建了一个菜单,如何模拟对其其中一项的点击?
It's fairly simple to simulate a button click in Robolectric:
Button someButton = (Button) findViewById(R.id.some_button);
someButton.performClick();
However, I can't seem to figure out how to do the same thing with a menu item. I create a menu in Activity.onCreateOptionsMenu
, how can I simulate a click on one of its items?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
享受!
Enjoy!
在 Robolectric 3.0+ 中,您可以使用
ShadowActivity.clickMenuItem(menuItemResId)
:In Robolectric 3.0+, you can use
ShadowActivity.clickMenuItem(menuItemResId)
:在 robolectric 3.0+ 中,该类称为
RoboMenuItem
In robolectric 3.0+ the class is called
RoboMenuItem
您已经在使用 Robolectric 那么为什么不使用 RoboMenuItem 呢?
确保您的活动不为空
Robolectric 版本
4.3
You are already using Robolectric then why don't use
RoboMenuItem
?Make sure your activity is not null
Robolectric version
4.3
使用 robolectric 2.4:
Using robolectric 2.4:
如果您想减少所需的覆盖/抽象编码量,您也可以使用 Mockito。像这样(在 Kotlin 中):
You can also use Mockito if you'd like to cut down on the amount of overriding/abstract coding required. Like this (in Kotlin):