首先 在AndroidManifest.xml 中加上:
在application 里面加上:
<uses-library android:name="android.test.runner" />
在AndroidManifest.xml中的根节点(mainfest)下添加
<instrumentation android:name="android.test.InstrumentationTestRunner"
android:targetPackage="cn.yjr.xml" android:label="Tests for My App" />
cn.yjr.xml 为主activity包下
类要继承 AndroidTestCase
public class MyTest extends AndroidTestCase {
//写上要进行测试的方法
}