最近累積了好多篇文章還沒發出來,今天很晚了,就寫到這裡吧。做下要發的文章筆記免得忘記了,呵呵 人老了啊!
如下:
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()............
測試結果如: