Robotium編寫測試用例如何模擬Junit4的BeforeClass和AfterClass方法1 - 條件判斷法

Robotium的測試類ActivityInstrumentationTestCase2是繼承於Junit3的TestCase類,因此並無提供Junit4的特性.如網上總結說的java

 

  • 不能經過annotate的方式來識別子類的新特徵,如不能實現@beforeclass,@afterclass等特徵。只能經過寫setup和teardown,
  • TestCase只能以test開頭進行測試case書寫。
那麼有時咱們並不想每次開始/完成一個case的時候都作一些重複的動做,也就是要實現Junit4的@beforeclass和@afterclass,該怎麼辦呢?
以SDK自帶的Notepad測試用例做爲例子,假如如今咱們須要實現兩個測試用例
  • testAddNoteCNTittle:建立一箇中文標題的筆記
  • testAddNoteEngTitle:建立一個英文標題的筆記
根據實例提供的代碼,在setup裏面會初始化solo而在teardown裏面會關閉全部打開的activities,也就是說每執行一個case都會從新初始化一次solo和關閉全部的activities:
  1. @Override  
  2. public void setUp() throws Exception {  
  3.     //setUp() is run before a test case is started.    
  4.     //This is where the solo object is created.   
  5.     super.setUp();  
  6.   
  7.     this.activity = this.getActivity();  
  8.   
  9.     this.solo = new Solo(getInstrumentation(), getActivity());  
  10. }  
  11.   
  12. @Override  
  13. public void tearDown() throws Exception {  
  14.     //tearDown() is run after a test case has finished.    
  15.     //finishOpenedActivities() will finish all the activities that have been opened during the test execution.   
  16.     solo.finishOpenedActivities();  
  17. }  
	@Override
	public void setUp() throws Exception {
		//setUp() is run before a test case is started. 
		//This is where the solo object is created.
		super.setUp();

		this.activity = this.getActivity();

		this.solo = new Solo(getInstrumentation(), getActivity());
	}
	
	@Override
	public void tearDown() throws Exception {
		//tearDown() is run after a test case has finished. 
		//finishOpenedActivities() will finish all the activities that have been opened during the test execution.
		solo.finishOpenedActivities();
	}
但事實上咱們在這個腳本只是去建立兩個Note,並不須要每執行完一個case都要去初始化solo和關閉全部activities。google後沒有發現有現成的取代@beforeclass和@aferclass的方法。
如下本人的實現方法
  1. <pre name="code" class="java">package com.example.android.notepad.test;  
  2.   
  3. import com.robotium.solo.Solo;  
  4.   
  5. import android.test.ActivityInstrumentationTestCase2;  
  6. import android.app.Activity;  
  7.   
  8. @SuppressWarnings("rawtypes")  
  9. public class TCCreateNote extends ActivityInstrumentationTestCase2{  
  10.   
  11.     private static Solo solo = null;  
  12.     public Activity activity;  
  13.       
  14. <span style="white-space:pre">    </span>private static final int NUMBER_TOTAL_CASES = 2;  
  15.     private static int run = 0;  
  16.       
  17.     private static Class<?> launchActivityClass;  
  18.   
  19.     //對應re-sign.jar生成出來的信息框裏的兩個值   
  20.     private static String mainActiviy = "com.example.android.notepad.NotesList";  
  21.     private static String packageName = "com.example.android.notepad";  
  22.   
  23.     static {  
  24.   
  25.         try {  
  26.   
  27.             launchActivityClass = Class.forName(mainActiviy);  
  28.   
  29.         } catch (ClassNotFoundException e) {  
  30.   
  31.             throw new RuntimeException(e);  
  32.   
  33.         }  
  34.   
  35.     }  
  36.       
  37.       
  38.     @SuppressWarnings("unchecked")  
  39.     public TCCreateNote() {  
  40.         super(packageName, launchActivityClass);  
  41.     }  
  42.   
  43.       
  44.     @Override  
  45.     public void setUp() throws Exception {  
  46.         //setUp() is run before a test case is started.    
  47.         //This is where the solo object is created.   
  48.         super.setUp();   
  49. <span style="white-space:pre">        </span>//The variable solo has to be static, since every time after a case's finished, this class TCCreateNote would be re-instantiated   
  50.         // which would lead to soto to re-instantiated to be null if it's not set as static   
  51.         if(solo == null) {  
  52.             TCCreateNote.solo = new Solo(getInstrumentation(), getActivity());  
  53.         }  
  54.     }  
  55.       
  56.     @Override  
  57.     public void tearDown() throws Exception {  
  58.         //Check whether it's the last case executed.   
  59.         run += countTestCases();  
  60.         if(run >= NUMBER_TOTAL_CASES) {  
  61.             solo.finishOpenedActivities();  
  62.         }  
  63.     }  
  64.   
  65.     public void testAddNoteCNTitle() throws Exception {  
  66.           
  67.         solo.clickOnMenuItem("Add note");  
  68.         solo.enterText(0, "中文標籤筆記");  
  69.         solo.clickOnMenuItem("Save");  
  70.         solo.clickInList(0);  
  71.         solo.clearEditText(0);  
  72.         solo.enterText(0, "Text 1");  
  73.         solo.clickOnMenuItem("Save");  
  74.         solo.assertCurrentActivity("Expected NotesList Activity", "NotesList");  
  75.           
  76.         solo.clickLongOnText("中文標籤筆記");  
  77.         solo.clickOnText("Delete");  
  78.     }  
  79.       
  80.       
  81.     public void testAddNoteEngTitle() throws Exception {  
  82.         solo.clickOnMenuItem("Add note");  
  83.         solo.enterText(0, "English Title Note");  
  84.         solo.clickOnMenuItem("Save");  
  85.         solo.clickInList(0);  
  86.         solo.clearEditText(0);  
  87.         solo.enterText(0, "Text 1");  
  88.         solo.clickOnMenuItem("Save");  
  89.         solo.assertCurrentActivity("Expected NotesList Activity", "NotesList");  
  90.           
  91.         solo.clickLongOnText("English Title Note");  
  92.         solo.clickOnText("Delete");  
  93.     }  
  94. }  
相關文章
相關標籤/搜索