androidTest:如何获取res / raw目录中的文件的路径?

时间:2019-01-23 22:21:48

标签: android android-testing

我在androidTest目录的res / raw中有一个文件。我想在测试中将其路径传递给另一种方法。我尝试过类似的操作:{{1} 基于this的答案,但是没有用。我想念什么吗?

1 个答案:

答案 0 :(得分:0)

androidTest 可以通过以下代码访问资源:

Context context = getInstrumentation().getContext();
context.getResources().openRawResource(R.raw.your_filename);

Context context = getInstrumentation().getContext();
context.getResources().openRawResource(com.your.package.test.R.raw.your_filename);