android - 访问测试应用程序资产
我的测试应用程序的资产目录中有一个 XML 文件。我想从测试类的套件方法访问此文件。
即,
公共静态 TestSuite suite(){ InputStream Stream = // 返回资源的一些代码 知道
我该怎么做吗?我尝试使用 Resources.Resources.getSystem().getAssets() 但没有运气:-(。请帮忙。
感谢 adv, 约瑟夫
I've an XML file in the assets directory of my test application. I want to access this file from my suite method of the test class.
ie.,
public static TestSuite suite(){
InputStream stream = // Some code which returns the asset
}
Any idea how I can do this? I tried with Resources.Resources.getSystem().getAssets() but no luck :-(. help please.
Thanx in adv,
Joseph
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我的测试应用程序遇到了同样的问题。不幸的是,看起来测试用例类中的 getContext() 实际上返回了被测应用程序的上下文。为了获取测试应用程序本身的上下文,您必须继承
InstrumentationTestCase
,然后调用getInstrumentation().getContext()
来获取测试应用程序的上下文。I encountered the same problem with my test app. Unfortunately, it looks like getContext() in a test case class actually returns the context of the application under test. In order to get the context of the test application itself, you have to inherit from
InstrumentationTestCase
and then callgetInstrumentation().getContext()
to get the context of the test app.我们也可以使用此方法 链接xml 文件的文本。
We can use also this method link text for xml-file.