1.在AndroidManifest清单文件中进行配置

 

<application
android:allowBackup="true"
android:debuggable="true" >
<!--配置资源包-->
<uses-library android:name="android.test.runner" />
</application>
<!-- 配置要进行单元测试的包targetPackage-->
<instrumentation
android:name="android.test.InstrumentationTestRunner"
android:label="My Text"
android:targetPackage="edu.qust.text" >
</instrumentation>

  2.定义一个继承自AndroidTestCase的测试类

 

public class Text extend AndroidTestCase{
public void testAdd throws Exception{
}
}