簡體   English   中英

Android本地單元測試

[英]Local Unit Test 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>

顯然,測試將檢查是否創建了帶有登錄文本的按鈕。

使用Expresso

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

以下是有關如何使用Expresso進行設置的詳細信息

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM