2016-08-10 162 views
0

有人可以告訴我一個工作代碼來對這段代碼進行單元測試嗎?本地單元測試Android

@Override 
protected void onCreate(Bundle savedInstanceState) { 

    super.onCreate(savedInstanceState); 
    setContentView(R.layout.activity_welcome); 
} 

請使用本地單元測試(如果可能,請使用roboelectric等)和儀器測試。

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout  xmlns:android="http://schemas.android.com/apk/res/android" 
    android:orientation="vertical" android:layout_width="match_parent" 
    android:layout_height="match_parent"> 

<Button 
    android:id="@+id/login" 
    android:text="Login" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content"/> 

</LinearLayout> 

顯然,測試將檢查是否存在與創建的文本登錄按鈕。

+0

您是否嘗試閱讀任何文檔? https://developer.android.com/training/testing/start/index.html http://www.vogella.com/tutorials/Robotium/article.html –

回答

0

使用Expresso

if(onView(withText("Login")).exists()){ 
    doSomething(); 
} else { 
    doSomethingElse(); 
} 

下面是如何設置使用快報上details

+0

如何學會在上述框架中集成junit和mockito –