テストケースを開始する1つの方法は、
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 = new Intent(com.google.android.contacts, ContactsActivity.class);
startActivity(intent);
しかし、実行する方法
adb shell am instrument
-w com.google.vishal.test/android.test.InstrumentationTestRunner
Androidの意図によって?
事前にご協力いただきありがとうございます:-)