当前位置: 代码迷 >> Android >> 在Eclipse中开展Android单元测试
  详细解决方案

在Eclipse中开展Android单元测试

热度:8   发布时间:2016-05-01 19:35:09.0
在Eclipse中进行Android单元测试

1、在AndroidMenifest.xml配置文件中增加以下配置信息:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"      package="com.cjm.android.test"      android:versionCode="1"      android:versionName="1.0">    <uses-sdk android:minSdkVersion="8" />        <!-- 访问HTTP服务所需的网络权限 -->    <uses-permission android:name="android.permission.INTERNET"/>	    <application android:icon="@drawable/icon" android:label="@string/app_name">        ......		<!-- 单元测试需要用到的类库 -->		<uses-library android:name="android.test.runner"/>    </application>        <!-- 测试设备的主类和目标包 -->    <instrumentation     	android:name="android.test.InstrumentationTestRunner"     	android:targetPackage="com.cjm.android.test"/></manifest>

?

2、新建单元测试类,该类需要继承AndroidTestCase类。这个类本身是继承junit.framework.TestCase,并提供了getContext()方法,用于获取Android上下文环境。

public class HttpTest extends AndroidTestCase {	String url = "http://10.173.78.30:7777/android_web/testServlet";		public void testGet() throws Exception {         String result = HttpClientUtils.handlerGet(url);        printResult(result);	}		public void testPost() throws Exception {         String result = HttpClientUtils.handlerPost(url);        printResult(result);	}}

?

  相关解决方案