如何进行Android单元测试

1、Menifest.xml 中加入:
<application> 中加入:

view plaincopy to clipboardprint?
<uses-library android:name="android.test.runner" />
<uses-library android:name="android.test.runner" />

<application> 外面加入:

view plaincopy to clipboardprint?
<uses-permission android:name="android.permission.RUN_INSTRUMENTATION" />
<instrumentation android:name="android.test.InstrumentationTestRunner" android:targetPackage="name.feisky.android.test"
android:label="Test for my app"/>
<uses-permission android:name="android.permission.RUN_INSTRUMENTATION" />
<instrumentation android:name="android.test.InstrumentationTestRunner" android:targetPackage="name.feisky.android.test"
android:label="Test for my app"/>

2、 编写单元测试代码:必须继承自 AndroidTestCase 类

view plaincopy to clipboardprint?
package name.feisky.android.test;

import android.test.AndroidTestCase;
import junit.framework.Assert;

public class MyTest extends AndroidTestCase {
private static final String Tag="MyTest";

public void testSave() throws Throwable
{
int i=4+8;
Assert.assertEquals(5,i);
}

public void testSomethingElse() throws Throwable {
Assert.assertTrue(1 + 1 == 12);
}

}
package name.feisky.android.test;

import android.test.AndroidTestCase;
import junit.framework.Assert;

public class MyTest extends AndroidTestCase {
private static final String Tag="MyTest";

public void testSave() throws Throwable
{
int i=4+8;
Assert.assertEquals(5,i);
}

public void testSomethingElse() throws Throwable {
Assert.assertTrue(1 + 1 == 12);
}

}

3、 执行测试

IntelliJ 中:


eclipse 中:右键 run as Android JUnit Test

命令行工具:

view plaincopy to clipboardprint?
adb shell am instrument -w name.feisky.android.test/android.test.InstrumentationTestRunner
adb shell am instrument -w name.feisky.android.test/android.test.InstrumentationTestRunner

也可以新建一个测试项目进行测试

1、 New > Project > Android > Android Test Project .

添加测试用例类
添加新类,基类设置为 android.test.ActivityInstrumentationTestCase2<HelloAndroid>

添加构造函数
添加 setUp() 方法,这个方法在所有的测试之前进行变量和测试环境的初始化。

view plaincopy to clipboardprint?
@Override
protected void setUp() throws Exception {
super.setUp();
mActivity = this.getActivity();
mView = (TextView) mActivity.findViewById(com.example.helloandroid.R.id.textview);
resourceString = mActivity.getString(com.example.helloandroid.R.string.hello);
}
@Override
protected void setUp() throws Exception {
super.setUp();
mActivity = this.getActivity();
mView = (TextView) mActivity.findViewById(com.example.helloandroid.R.id.textview);
resourceString = mActivity.getString(com.example.helloandroid.R.string.hello);
}
添加testPreconditions () 方法,检查初始化环境,只执行一次
view plaincopy to clipboardprint?
public void testPreconditions() {
assertNotNull(mView);
}
public void testPreconditions() {
assertNotNull(mView);
}
添加单元测试
view plaincopy to clipboardprint?
public void testText() {
assertEquals(resourceString,(String)mView.getText());
}
public void testText() {
assertEquals(resourceString,(String)mView.getText());
}
测试 Run As... > Android JUnit Test

更多相关文章

  1. Android简单的登录界面的值传递
  2. Android《内嵌浏览器-WebView》
  3. Android下如何获取Mac地址
  4. Android(安卓)studio使用lambda表达式
  5. Android(安卓)MTK Launcher3安装三方apk,应用图标自动添加白边
  6. Android——ViewGroup的一个用法实例
  7. Android单元测试总结
  8. Android(安卓)创建,验证和删除桌面快捷方式 (删除快捷方式测试可
  9. android 源码下载、编译和测试

随机推荐

  1. Android第二天--基于Snake的示例建立和运
  2. 深入解析Android的自定义布局
  3. android Application Component研究之Bro
  4. Android(安卓)Canvas绘图描述Android(安
  5. Android周学习Step By Step(6)--Android的
  6. android:configChanges属性
  7. Android(安卓)TextView属性
  8. FrameLayout使用
  9. Android(安卓)FrameWork——Touch事件派
  10. Android读写XML(下)——创建XML文档