android 簡單的單元測試

來源:互聯網
上載者:User

最近累積了好多篇文章還沒發出來,今天很晚了,就寫到這裡吧。做下要發的文章筆記免得忘記了,呵呵 人老了啊!

如下:
google 定位,加標註!
sqlite資料庫操作,儲存資料的總結(sqlite,bundel,sharedPreferences)

二維碼的編碼解碼,zxing 使用全解析

................

好了言歸正傳,這裡我就簡單講講單元測試!

 

一,建立測試工程:
建立android test project項目
在Test Target中選擇你要測試的工程
二,建立測試類別
    繼承activityInsrumentationTestCase2<HelloWorld>
    <HelloWorld>是你要測試專案中的activity
三,寫測試代碼
    方法以test開頭,如:testAbc,testTank  請注意命名規範

貼代碼:

 

代碼

package com.example.android.test;

import android.test.ActivityInstrumentationTestCase2;
import android.widget.TextView;

import com.example.android.HelloWorld;

publicclass HelloTest extends ActivityInstrumentationTestCase2<HelloWorld> {

private HelloWorld mActivity; // the activity under test
private TextView mView; // the activity's TextView (the only view)
private String resourceString;

public HelloTest() {
super("com.example.android", HelloWorld.class);//執行個體化單元測試時傳入要測試的包,類

// TODO Auto-generated constructor stub
}

@Override
protectedvoid setUp() throws Exception {
super.setUp();
mActivity =this.getActivity();//得到你在建構函式傳的類的activity執行個體
mView = (TextView) mActivity
.findViewById(com.example.android.R.id.txt);//得到HelloWorld項目中介面view的對象
resourceString = mActivity
.getString(com.example.android.R.string.hello);
//resourceString="tank";
}
publicvoid testText() {
assertEquals(resourceString, (String) mView.getText());//textView的值 是不是預期的值(應該是,實際是)
}
publicvoid testPreconditions() {
assertNotNull(mView);//判斷是否為null
}

}

Assert類封裝了很多的方法提供我們測試使用,你可以查看源碼,清關注我前幾篇文章有講到在MyEclipse中查看源碼的方法http://www.cnblogs.com/tankaixiong/archive/2010/10/20/1856899.html
 方法列舉: assertTrue(),assertFalse(),assertSame(),assertNull()............

測試結果如:

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.