Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以编写与语言无关的 Robotium 测试?例如,如果您使用 PreferenceActivity,根据定义,就无法获得对它的 R.id 引用。
是否有机制支持这一点?或者也许是 Robotium 从字符串文件中读取的一种方式?
谢谢你。
您可以通过简单地访问当前活动从 Robotium 测试中读取被测应用程序的 strings.xml 文件:
String myString = getActivity().getString(R.string.my_string);