android测试类Test

测试类(见天气预报项目)

/**

 * 在清单文件里进行配置

 *

 *

 *

 *    android:name="android.test.InstrumentationTestRunner"

 *     android:targetPackage="com.example.weather">   

 *

*

 *

 *

 *

 */

publicclassTest extendsAndroidTestCase {

   /*

    * 在方法里添加测试内容

    */

   publicvoid test(){

     

      HttpUtil.loadWeather(mContext, "guangzhou",newOnLoadWeatherFinash() {

        

         @Override

         publicvoid onFinish(WeatherBeanweatherBean) {

            // TODO Auto-generated method stub

            Log.d("TAG",weatherBean.toString());

           

         }

      });

   }

}

 

test工具类使用

1)清单文件中配置instrumentation

2)在Application里面,Activity外面

加上uses-library

3)创建一个Test类

你可能感兴趣的:(Android基础)