如何访问 Android 测试项目中的原始资源?

发布于 2024-11-30 10:00:39 字数 477 浏览 0 评论 0原文

这是我的测试类:

public class AndroidTunerTest extends
        ActivityInstrumentationTestCase2<AndroidTunerActivity> {
    [...]
}

但是我无法访问我的测试项目的上下文,我只能访问我想要测试的 Activity 的上下文。所以我不知道如何以这里提到的相同方式读取资源:

Android 如何访问我放入 res 文件夹中的原始资源?

我不想将所有测试资源捆绑在我的主应用程序中,因为测试有非常大的不相关的文件对于真正的应用程序。

我能做些什么?

This is my test class:

public class AndroidTunerTest extends
        ActivityInstrumentationTestCase2<AndroidTunerActivity> {
    [...]
}

But I can't access the context of my test project, I can only access the context of the Activity I want to test. So I don't know how to read the resources in the same way mentioned here:

Android how to get access to raw resources that i put in res folder?

I don't want to bundle all the test resources in my main app because the testing has very big files which aren't relevant for the real app.

What can I do?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

や三分注定 2024-12-07 10:00:40

明白了...

this.getInstrumentation().getContext().getResources().openRawResource(R.raw.blah_blah);

我花了一些时间调试和反思 ActivityInstrumentationTestCase2 继承树。

Got it...

this.getInstrumentation().getContext().getResources().openRawResource(R.raw.blah_blah);

Took me a bit of debugging and introspecting the ActivityInstrumentationTestCase2 inheritance tree.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文