如何通过 Robolectric 获取当前活动?
假设我有一个活动 A,它从其 onCreate()
方法中启动另一个活动 B,并期待结果。
如何使用 Robolectric 获取活动 B?
Suppose I have an activity A that launches another activity B from within its onCreate()
method, expecting for results.
How do I get activity B using Robolectric?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这个怎么样:
How about this:
也许您可以验证按钮启动的活动是否符合预期?
maybe you could verify that the activity that the button launched is as expected?
来自 Roboletric 文档:
因此,您无法获取 Activity 本身,但您可以拦截正在传递的 Intent 并检查是否已启动正确的 Activity。
为此,您可以使用
Shadows
。下面是检查ActivityB
是否在ActivityA
的onCreate
方法期间启动的代码(注意:我使用的是 Kotlin,但 Java 代码看起来很漂亮大致相同)。ShadowActivity
中的getNextStartedActivity
方法返回正在启动的 Intent。您可以检查其组件,看看它是否与您想要的相匹配,甚至可以检查 Bundle 内部,看看是否传递了您需要的所有内容。getNextStartedActivity
的文档:http://robolectric.org/javadoc/3.0/org/robolectric/shadows/ShadowContextWrapper.html#getNextStartedActivity--From the Roboletric documentation:
So you cannot get the Activity in itself, but you can intercept the Intent being passed and check if the right activity would have been launched.
For that you can use
Shadows
. Here is the code to check ifActivityB
is launched duringActivityA
'sonCreate
method (note: I am using Kotlin but the Java code looks pretty much the same).The
getNextStartedActivity
method fromShadowActivity
returns the intent being started. You can check its components to see if it matches what you want and even check inside the Bundle to see if you are passing everything you need.Documentation for
getNextStartedActivity
: http://robolectric.org/javadoc/3.0/org/robolectric/shadows/ShadowContextWrapper.html#getNextStartedActivity--