我想用一个Test应用程序测试很多应用程序。
我会在同一个测试应用程序中为我的应用程序编写每个测试方法..
例如:
我想在同一个测试应用程序中测试MyBluetooth.class,MyWifi.class,MyGSM.class,但每个类都在不同的包中。
我如何处理?
答案 0 :(得分:0)
在Android中,不同的包意味着不同的应用程序。在测试应用程序的AndroidManifest.xml中,您无法使用robotium来说明要测试哪个目标应用程序且不能超过一个。它的外观示例如下:
<instrumentation android:targetPackage="com.example.android.notepad" android:name="android.test.InstrumentationTestRunner" />