2011-06-14 155 views
3

我正在爲我的應用程序中的一個活動編寫測試用例類。如何在Android中使用Robotium編寫測試用例方法

Activity類包含安卓市場中的應用程序的許可證檢查,並且還顯示啓動屏幕3秒鐘。在此我想測試該活動是否顯示啓動畫面並使用Android中的Robotium工具檢查許可證。

那麼請告訴我該怎麼做。

回答

0

要測試你的閃屏顯示,你可以試試這個,如果你已經在你的設置方法設置robotium和獨奏把它命名爲:

public void testSplash() { 
    assertNotNull(solo.getCurrentActivity().findViewById("the id of the splash")); 
} 

public void testLicense() { 
    String licence = "my licence"; 
    assertEquals(licence, (MyActivity) solo.getCurrentActivity().getLicence()); 
} 
相關問題