开始测试用例的一种方法是,
adb shell am instrument
-w com.google.vishal.test/android.test.InstrumentationTestRunner
我想使用 Android 代码开始这个(有意图)
例如,
adb shell am start -n com.google.android.contacts/.ContactsActivity
我们可以通过以下方法使用 Android Intent 运行:-
Intent intent = new Intent(com.google.android.contacts, ContactsActivity.class);
startActivity(intent);
但是,如何运行
adb shell am instrument
-w com.google.vishal.test/android.test.InstrumentationTestRunner
由 Android 意图?
提前感谢您的帮助:-)