溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

擴(kuò)展InstrumentationTestRunner,傳遞自定義參數(shù)

發(fā)布時(shí)間:2020-04-24 18:44:35 來源:網(wǎng)絡(luò) 閱讀:1687 作者:心如明鏡 欄目:開發(fā)技術(shù)

 通過繼承InstrumentationTestRunner,就可以傳遞自定義參數(shù)到TestRunner。這里是傳遞port、packageName、activityName,其中port是用于在手機(jī)側(cè)啟動(dòng)一個(gè)TCP服務(wù)的端口,packageName和activityName是用于指定首個(gè)啟動(dòng)的activity的參數(shù)配置:

  1. import android.os.Bundle; 
  2. import android.test.InstrumentationTestRunner; 
  3.  
  4. public class AthrunInstrumentationTestRunner extends InstrumentationTestRunner { 
  5.     
  6.     private static String packageName = "com.taobao.fario"
  7.     
  8. private static String activityName = "com.taobao.fario.MainActivity"
  9.                  
  10.     private static String port = "1234"
  11.     
  12.     public static String getPort() { 
  13.         return port; 
  14.     } 
  15.  
  16.     public static String getPackageName() { 
  17.         return packageName; 
  18.     } 
  19.  
  20.     public static String getActivityName() { 
  21.         return activityName; 
  22.     } 
  23.      
  24.     @Override 
  25.     public void onCreate(Bundle arguments) { 
  26.         if (arguments != null) { 
  27.             String port = arguments.getString("port"); 
  28.             String packageName = arguments.getString("packageName"); 
  29.             String activityName = arguments.getString("activityName"); 
  30.             if (port != null) { 
  31.                 AthrunInstrumentationTestRunner.port = port; 
  32.             } 
  33.             if (packageName != null) { 
  34.                 AthrunInstrumentationTestRunner.packageName = packageName; 
  35.             } 
  36.             if (activityName != null) { 
  37.                 AthrunInstrumentationTestRunner.activityName = activityName; 
  38.             } 
  39.         } 
  40.          
  41.         super.onCreate(arguments); 
  42.     } 

執(zhí)行命令變成:

  1. adb -s SH14MTJ01900 shell am instrument -w -e port 1234 -e class org.athrun.remoterunner.TravelTest#test org.athrun.remoterunner/org.athrun.instrumentation.AthrunInstrumentationTestRunner 

在Testcase中如何使用傳入的packageName和activityName:

  1. public class TravelTest extends ActivityInstrumentationTestCase2 { 
  2.      
  3.     private static String getPkgName() { 
  4.         String packageName = AthrunInstrumentationTestRunner.getPackageName(); 
  5.         return packageName; 
  6.     } 
  7.  
  8.     private static String getActivityClassStr() throws ClassNotFoundException { 
  9.         String activityName = AthrunInstrumentationTestRunner.getActivityName(); 
  10.         return activityName; 
  11.     } 
  12.  
  13.     public TravelTest() throws Exception { 
  14.         super(getPkgName(), getActivityClassStr()); 
  15.     } 

-e 是屬于擴(kuò)展參數(shù),使用這種方法是可以不斷擴(kuò)展的。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI