如何进行单元测试

androidmanifest中的配置:
第一步:
  
package="com.comtech.log"
..
..

<application ...
  加入位置要注意  <uses-library android:name="android.test.runner"/>

    <uses-sdk ....
加入位置要注意  <instrumentation android:name="android.test.InstrumentationTestRunner"
            android:targetPackage="com.comtech.log"  android:label="Test for App"
上下两个包名要一致。

第二步:(单元测试3)
package com.comtech.log;
import ....
隐形的:  JunitRun-->LogTest(实例化)-->testSave();
   JunitRun{
run(){
      LogTest  l=new LogTest();
      ...
    ...
}

}
编写单元测试:
public  class  类名  extends AndroidTestCase{
     private static final  String TAG="LogTest"
下面的方法你可以自己定义的,测试的时候右击方法名!---
    public void  testSave()  throws Exception{
      int i=1+1;
     Log.i(TAG,"result"+1);
  }
}

你可能感兴趣的:(单元测试)