import android.app.Instrumentation;
import android.test.InstrumentationTestCase;
import android.util.Log;
/**
* Created by mark_chen on 2015/12/11.
* 1.使用了AndroidStudio自带的单元测试功能
* a)在(androidTest)包中创建类
* b)继承InstrumentationTestCase
* c)创建以test开头的方法
* d)右击本类可以直接运行
* */
public class TestClass extends InstrumentationTestCase {
public void test() {
Log.e("test","Android单元测试");
}
}
使用AndroidStudio进行Android单元测试
最新推荐文章于 2024-04-22 03:26:05 发布